@extends('layouts.default') @push('title', get_phrase('Invoice')) @section('content')
@include('frontend.default.student.left_sidebar')

{{ get_phrase('Invoice') }}

{{ get_phrase('Invoice') }} #{{ str_pad($invoice->id, 5, '0', STR_PAD_LEFT) }}

{{ get_phrase('Date') }}: {{ date('d-m-Y', strtotime($invoice->created_at)) }}

system logo
{{ get_phrase('Item') }} {{ get_phrase('Date of issue') }} {{ get_phrase('Payment Method') }} {{ get_phrase('Price') }}

{{ $invoice->course_title }}

{{ date('d-m-Y', strtotime($invoice->created_at)) }}

{{ ucfirst($invoice->payment_type) }}

{{ currency($invoice->amount, 2) }}

{{ get_phrase('Billed to :') }}

{{ auth()->user()->name }}

{{ get_phrase('Total') }}

{{ currency($invoice->amount, 2) }}

@endsection @push('js') @endpush