@extends('layouts.admin') @push('title', get_phrase('Invoice')) @push('meta')@endpush @push('css')@endpush @section('content')

{{ get_phrase('Invoice') }}

{{ get_phrase('Invoice id') }}: #{{ $invoice_id }}

{{ get_phrase('Billed To') }}
{{ get_user_info($invoice_info->user_id)->name }} {{ get_user_info($invoice_info->user_id)->email }}
{{ get_phrase('Date Of Issue') }}
{{ date('D, d-M-Y', strtotime($invoice_info->created_at)) }}
{{ get_phrase('Invoice Total') }}
{{ currency($invoice_info->amount) }}
@foreach ($invoice_data as $key => $invoices) @endforeach
# {{ get_phrase('Type') }} {{ get_phrase('Requested amount') }} {{ get_phrase('Amount') }}
{{ ++$key }} {{ get_phrase('Withdrawal request') }} {{ currency($invoice_info->amount) }} {{ currency($invoice_info->amount) }}

{{ get_phrase('Subtotal') }} :{{ currency($invoice_info->amount) }}

@endsection @push('js') @endpush