Blade - Laravel Blade templating engine
--------------------------------------
The blade is a PHP templating engine in laravel. We also use using the blade templating engine the laravel use is called a blade.
layouts/app.blade.php - this 'app' is very popular among developers. this is what even laravel uses. that would be the master page right now.
how to create the blade (layouts/app.blade.php):
layouts/app.blade.php is a master page
You have a container and here you have some type of content right. you can do with a blade this. you can put @ symbol and user function call yield and then here you can put let's say content.
@yield('content')
@extends basically including
@stop or @endsection
No comments:
Post a Comment