Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 212 Bytes

LaravelBlade.md

File metadata and controls

10 lines (7 loc) · 212 Bytes

Blade Front, view helper, @yield, @section

    Route::get('parentLayout', function(){
    return view('layouts.view1');
});

Route::get('childView', function(){
    return view('childA');
});