Can you show us your controller & route?
If i'm understanding your initial post correctly, lets say your page name (located in the view folder) is servicing.blade.php.
Normally in your controller you would have:-
//ServicingController
public function show()
{
return view('servicing');
// or if its in a folder within the view folder: return view('foldername.your_page_name');
}
Your route would then look something like:-
Route::get('servicing', 'ServicingController@show');
What is it your trying to pass to your view page? Is it something from your database? As this would normally be assigned to a variable and passed into your view. Something like
//ServicingController
use App\Servicing;
public function show()
{
$oil = Servicing::all();
return view('servicing', compact('oil'));
}
Then in your view you would have your fields:-
{{ $oil->name }} // example`