Templating with Blade directives.
Blade Basics
@if ($posts->count())
@foreach ($posts as $post)
<x-post-card :post="$post" />
@endforeach
@endif
Templating with Blade directives.
@if ($posts->count())
@foreach ($posts as $post)
<x-post-card :post="$post" />
@endforeach
@endif
Comments (0)
Comments are disabled for this site.