@extends('layouts.app') @section('title', $app_setting['name'] . ' | Restore List') @section('content')
| Invoice Id | Course Title | Student Name | Payment Status | Total Amount | Action | ||
|---|---|---|---|---|---|---|---|
| {{ $invoice->invoice_token }} | {{ $invoice->courses->pluck('title')->map(fn($title) => Str::limit($title, 30))->implode(' && ') }} | {{ $invoice->user->name }} |
@if ($invoice->payment_status == 0)
unpaid
paid
|
@if ($invoice->total_price) @if ($app_setting['currency_position'] == 'Left') {{ $app_setting['currency_symbol'] }}{{ $invoice->total_price }} @else {{ $invoice->total_price }}{{ $app_setting['currency_symbol'] }} @endif @else N/A @endif |
|
||
| No data found | |||||||