@extends('layouts.manage') @section('title')@lang('Vendor Payments') - {{config('app.name')}}@endsection @section('page-header-title') @lang('Vendor Payments') @endsection @section('page-header-description') @lang('View payouts and set preferred methods to receive your payments') @endsection @section('content')

{{$vendor->name}}

@lang('Phone:') {{$vendor->phone}}

@lang('Payment Methods')

@include('includes.form_errors') @if(session()->has('payments_updated')) @endif
{{csrf_field()}}
{{csrf_field()}}

@lang('Last Payouts')

@if(count($vendor_payments)) @foreach($vendor_payments as $vendor_payment) @endforeach @endif
@lang('Transaction ID') @lang('Amount') @lang('Payment Method') @lang('Date')
{{$vendor_payment->payment_id}} {{currency_format($vendor_payment->amount, $vendor_payment->currency)}} {{$vendor_payment->payment_method}} {{$vendor_payment->created_at->format('d-m-Y h:i A')}}
{{$vendor_payments->links()}}
@endsection