Blade is the simple, yet powerful templating engine provided with Laravel.
I have an issue with a laravel 5.2 site I'm working on. I have a master (main) layout that I'm using …
php laravel-5.2 blade laravel-bladeI did not find how to use a clause (OR, AND) in view with @can, for checking multiple abilities ... I …
laravel laravel-5.1 blade laravel-bladeI have a custom function and I want to pass it in a blade template. Here is the function: function …
laravel laravel-bladeHow can I compile a blade template from a string rather than a view file, like the code below: <?…
php laravel laravel-bladeIf I have a layout called RightSideBar.blade.php in Laravel blade, one area yield('content') and the other yield(…
php laravel laravel-blade@if(Request::is('login') OR Request::is('tags') OR Request::is('categories') OR Request::is('posts') OR Request::is('tags/..…
php laravel laravel-blade laravel-requestI try like this : <div class="media-body"> @foreach($categories as $category) @php $category[] = $category->name @endphp @endforeach {{ …
php laravel laravel-5.3 laravel-blade implodeHello dear i want to create a customer blade which provides users to import and export excel file. My customers_…
laravel exception blade laravel-blade laravel-excelSo i'm trying to code a simple website form. But it has this htmlspecialchars error. I've tried to make {{ $message }} …
php laravel web laravel-blade htmlspecialcharsLaravel 5.4 Blade introduced the concept of components & slots - but I can't see what they add over the traditional @…
php laravel blade laravel-5.4 laravel-blade