this page contains a Zip file which contains all the blade files necessary to start a layout

Often I am adding new features to my website, in this example, i have created the necessary files you will need for a start template. Downolad the zip file which contains the necessary files.

Instructions:

1. Place 'a' folder in resources/views/
2. open routes/web.php
3. add
    Route::get('/a', function () {
        //return View::make('a.pages.index');
        return view('a.pages.index');
    })->name('index');
4. open in browser: http://127.0.0.1:8000/a
5. You can rename 'a' to whatever you want

28-p5288-blade-starter.zip