@extends(ACTIVE_TEMPLATE.'.base') @section('content')

{{ $pageMetaTitle }}

This is a place holder template page.

Make a new page out of it using following steps:

  1. Make a copy of template.php and name it newpage.php

  2. In views folder, make a copy of .blade.php and name it newpage.blade.php

  3. Now open newly created newpage.php in your favorite editor (Notepad, Notepad++, or anything). Change text renderTemplate('template') to renderTemplate('newpage') at the bottom of the file.

  4. Edit newpage.blade.php as you want so that it has desired content.

  5. Upload newpage.php and views/newpage.blade.php on your server.

  6. Now you can view that page as {{ SCRIPT_ROOT }}newpage.php in your browser.

  7. Now add link to newpage.php in the header or footer blade files.

  8. That is it! You have added a new page.

@endsection