I'm creating a default blade layout.
The file is called default.blade.php, and lives in the layout folder.
Also under the layout folder is include. In this dir, I have head.blade.php
I would like to call 'head' from 'default'.
Every one of these fails and returns an error when debug is turned on:
@include('include/head'), @include('include/head.blade.php'), @include('include/head.blade.php')
I have copied head.blade.php into the same folder as default.blade.php, and still get errors. I'd like to split my layouts into partials.