@extends("admin.template.layout") @section('header') @endsection @section('content')
Checked In History
# Venue Check in Check out Time Spent Status Action
Communities
@forelse($communities as $community)
Card image cap
{{$community->name}}
@empty
No communities found
@endforelse
Purchase History
@forelse ($gifts as $gift) @empty @endforelse
ID Venue Receivers Sender Name Amount Commission Code Created At Action
{{ $gift->id }} {{ $gift->venue->name }} {{ $gift->receiver->name }} {{ $gift->sender->name }} {{ number_format($gift->amount_paid) . ' AED' }} {{number_format($gift->commission) . ' AED'}} {{ $gift->code ?? '1111'}} {{ $gift->created_at }}
No gifts found
@stop @section('script') @stop