@extends('layouts.app') @section('content')
{{ _lang('Payment History') }}
@php $date_format = get_option('date_format','Y-m-d'); @endphp @php $time_format = get_option('time_format',24) == '24' ? 'H:i' : 'h:i A'; @endphp @foreach($payment_history as $history) @endforeach
{{ _lang('Date') }} {{ _lang('Company') }} {{ _lang('Package') }} {{ _lang('Method') }} {{ _lang('Amount') }}
{{ date("$date_format $time_format",strtotime($history->created_at)) }} {{ $history->company->business_name }} {{ $history->title }} {{ $history->method }} {{ decimalPlace($history->amount, currency($history->currency)) }}
{{ $payment_history->links() }}
@endsection