InterviewSolution
Saved Bookmarks
| 1. |
How to extend a layout file in laravel view? |
|
Answer» With this @extends('LAYOUTS.master') we can EXTEND this master LAYOUT in any view file. In this EXAMPLE layouts are a folder that is PLACED in resources/views available and the master file will be there. Now "master.blade.php" is a layout file. |
|