Have a look at the methods in Illuminate\View\Compilers\BladeCompiler - everything beginning with compile is a Blade directive.
Aug 28, 2018
4
Level 7
where do I get all Blade built-in directives?
This official blade page (https://laravel.com/docs/5.6/blade#blade-and-javascript-frameworks) does not give me all Blade directives. Nothing about @method and @csrf directives. I got them from a route page (https://laravel.com/docs/5.6/routing#route-groups).
Where can i get all directives , prefer in code
<form action="/foo/bar" method="POST">
@method('PUT')
@csrf
</form>
Please or to participate in this conversation.
