@extends('layouts.admin') @section('title','Payment History') @section('css') @endsection @section('breadcrumb', 'Payment History') @section('content')
Payment History
@if(count($paymenthistory)>0) @foreach($paymenthistory as $data) @endforeach @endif
User Provider Payment ID Transaction ID Amount Date Transfer Group Action
@if(isset($data->user)){{$data->contact->user->userFirstName." ".$data->contact->user->userLastName}}@endif @if(isset($data->contact->provider)){{$data->contact->provider->userFirstName." ".$data->contact->provider->userLastName}}@endif {{$data->paymentid}} {{$data->balance_transaction}} {{$data->amount}} {{$data->created_at}} {{$data->transfer_group}} Done
@if(count($paymenthistory)>0) {{ $paymenthistory->links('vendor.pagination.default') }} @endif
@endsection @section('js') @endsection