@if($gifts->count() == 0)
No hay regalos para mostrar
@else
| # |
Nombre |
Foto |
Descripción |
Precio |
Link |
Acciones |
@foreach ($gifts as $gift)
| {{ $gift->id }} |
{{ $gift->name }} |
|
{{ $gift->description }} |
$ {{ $gift->price }} |
|
|
@endforeach
{!! $gifts->links('custom-pagination-links') !!}
@endif