@extends('layouts.app') @section('content') @if (session()->has('message'))
{{ session()->get('message') }}
@endif @if (session()->has('error'))
{{ session()->get('error') }}
@endif
{{--
--}}
Offline Payment List
{{--
--}}
@forelse($offline_payments as $key => $offline_payment) @empty @endforelse
Sl No Sender Sender Email Sender Phone Amount Receiver Receiver Email Receiver Phone Created Date Action
{{ $loop->index + 1 }} {{ $offline_payment->first_name. ' '. $offline_payment->last_name }} {{ $offline_payment->email }} {{ $offline_payment->phone }} {{ $offline_payment->amount }} {{ $offline_payment->user->name }} {{ $offline_payment->user->email }} {{ $offline_payment->user->phone }} {{ $offline_payment->created_at->format('d-m-Y') }}
No record found...
{{-- Showing 1 to 3 of 4 results --}} {{-- {{ $users->links() }} --}} @if($offline_payments) {{ $offline_payments->links('pagination::bootstrap-4') }} @endif
@push('scripts') @endpush @endsection