@extends('admin.layouts.app') @section('title', 'Redeemable Gifts') @section('content')

Redeemable Gifts

@can('redeemable_gift.create') Add Gift @endcan
@include('admin.gifts.filters')
@forelse ($gifts as $gift) @empty @endforelse
# Image Name Price Quantity Status Action
{{ $loop->iteration + ($gifts->firstItem() - 1) }} @if ($gift->image) @else - @endif {{ $gift->name }} {{ $gift->price }} {{ $gift->quantity }} @if ($gift->is_active) Active @else Inactive @endif
No gift found.
@endsection