@extends('layouts.app') @section('content')

{{ __('Gift List') }}

{{__('Create New')}}
{{__('All Gifts')}}
@forelse($gifts as $key => $gift) @php $serial = $gifts->firstItem() + $key; @endphp @empty @endforelse
{{ __('SL') }} {{ __('Thumbnail') }} {{ __('Name') }} {{ __('Price') }} {{ __('Status') }} {{ __('Action') }}
{{ $serial }} {{ $gift->name }} {{ showCurrency($gift->price) }}
{{ __('No Data Found') }}
{{ $gifts->withQueryString()->links() }}
@endsection