Skip to content
Advertisement

PHP code inside a Laravel 5 blade template

I have to place some PHP code inside a Laravel 5 blade template. Like below

@foreach ($farmer->tasks as $task)
    @if ($task->pivot->due_at) < date(now))
        $style = 'alert alert-danger';
    @elseif ($task->pivot->due_at) > date(now))
        $style = 'alert alert-success';
    @else
        $style = '';
    @endif
@endforeach

What is the actual procedure to place PHP code inside a Laravel 5 blade template?

Advertisement

Answer

According to documentation, in Laravel 5.2 and newer you can use the following code:

@php
{{-- PHP code here --}}
@endphp

Alternatively, you can extend the Blade templating engine as it’s described here.

If neither of the above solutions is suitable, you are stuck with the answers given by Armen and by Gonzalo.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement