PHP code inside a Laravel 5 blade template

Solution 1:

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.

Solution 2:

Just open and close PHP tags:

<?php $style = '...'; ?>