芝麻web文件管理V1.00
编辑当前文件:/home/c7lekhnath/silverray.com.au/Modules/Order/resources/views/index.blade.php
@extends('admin.master_layout') @section('title')
{{ $title }}
@endsection @section('admin-content')
{{ __('SN') }}
{{ __('User') }}
{{ __('Order Id') }}
{{ __('Price') }}
{{ __('Status') }}
{{ __('Payment') }}
{{ __('Action') }}
@forelse ($orders as $index => $order)
{{ ++$index }}
{{ $order?->user?->name }}
#{{ $order->order_id }}
{{ currency($order->total_amount) }}
@if ($order->order_status == 'success')
{{ __('Success') }}
@else
{{ __('Pending') }}
@endif
@if ($order->payment_status == 'success')
{{ __('Success') }}
@elseif ($order->payment_status == 'rejected')
{{ __('Rejected') }}
@else
{{ __('Pending') }}
@endif
@empty
@endforelse
@csrf @method('DELETE')
{{ __('Delete Plan') }}
{{ __('Are You Sure to Delete this Plan ?') }}
@push('js') @endpush @endsection