@extends('../layout/' . $layout) @section('subhead') Gifts @endsection @section('subcontent') @php $currency = DB::table('systemflag') ->where('name', 'Currency') ->select('value') ->first(); @endphp

Gifts

Add Gift
@if (count($gifts) > 0)
@php $no = 0; @endphp @foreach ($gifts as $gift) @endforeach
# NAME IMAGE AMOUNT STATUS ACTION
{{ ($page - 1) * 15 + ++$no }}
Astrologer image
{{ $gift['name'] }}
{{ $currency->value }}{{ $gift['amount'] }}
@if ($totalRecords > 0)
Showing {{ $start }} to {{ $end }} of {{ $totalRecords }} entries
@endif
@else
noData

No Data Available

@endif @endsection @section('script') @endsection