Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 6, 2019 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/2937a977a33e8847b72e3ef35f87eb77 to your computer and use it in GitHub Desktop.
Save parzibyte/2937a977a33e8847b72e3ef35f87eb77 to your computer and use it in GitHub Desktop.
@php
$mostrarPorFila = 3
@endphp
{{-- https://parzibyte.me/blog/2019/03/02/blade-laravel-ciclos-condicionales-token-csrf-componentes/ --}}
@forelse($articulo->fotos as $foto)
{{-- Aquí muestro las fotos --}}
@empty
<div class="columns">
<div class="column">
<h1 class="is-size-1">No hay fotos</h1>
</div>
</div>
@endforelse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment