Laravel @include Directive

We use this directive to call other views inside the View.

@include('view-name')

// or
@include('folder.view-name')

We can also call our views by sending parameters.

@include('view-name', ['name' => 'PHPEXAMPLE'])

 

Comments

There are no comments, make the firs comment