@extends('_layout.layout') @section('title') {{$apiUser->firstname}} {{$apiUser->lastname}} Payments @endsection @section('header')

{{$apiUser->company->name}} Customer Payments - {{$apiUser->firstname.' '.$apiUser->lastname}}

@endsection @section('content')
Payments
@if ($payments->count()>0) @if (auth()->user()->role==\App\PlatformUser::ROLE_DEVELOPER) @endif @foreach($payments as $payment) @if (auth()->user()->role==\App\PlatformUser::ROLE_DEVELOPER) @endif @endforeach
Platform Type Amount Transaction ID Original Transaction ID Date Platform Product ID Platform Product NameActions
{{\App\Licence::getPlatformName($payment->platform)}} {{\App\PurchaseRequest::getTypeDescription($payment->type)}} {{$payment->amount}} {{$payment->transaction_id}} {{$payment->original_transaction_id}} {{$payment->purchase_date}} {{$payment->product_id}} {{$payment->product_name}}Check receipt
@if ($payments->lastPage()>1)
{{ $payments->links() }}
@endif @else No data @endif
@endsection @section('page-script') @endsection @section('page-css') @endsection