@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Plans']) @endsection @section('content')
{{ $row->description }}
| {{ __('Order') }} | {{ __('Name') }} | {{ __('Purchase Date') }} | {{ __('Expiry date') }} | {{ __('Total') }} | {{ __('Tax') }} | {{ __('Payment Method') }} | {{ __('Payment Status') }} | {{ __('Fulfillment') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $row->order_no }} | {{ $row->plan_info->name ?? '' }} | {{ $row->created_at->format('Y-m-d') }} | {{ $row->will_expire }} | {{ amount_admin_format($row->amount,2) }} | {{ amount_admin_format($row->tax,2) }} | {{ $row->category->name ?? '' }} | @if($row->payment_status==1) {{ __('Paid') }} @elseif($row->payment_status==2) {{ __('Pending') }} @else {{ __('Fail') }} @endif | @if($row->status == 1) Approved @elseif($row->status == 2) {{ __('Pending') }}@elseif($row->status == 3) {{ __('Expired') }}@else {{ __('Cancelled') }} @endif |