J'ai besoin de quelque chose comme ça:
@if ($array.length > 0)
{{-- expr --}}
@endif
est-ce possible?
@if (count($array) > 0)
{{-- expr --}}
@endif
Vous pouvez utiliser la fonction de comptage php pour compter la longueur d'un tableau.
Aie...
@if (count($array) > 0)
{{-- expr --}}
@endif