@extends('admin.master_layout') @section('title')
{{ __('Dashboard') }} >> {{ $title }}
@endsection @section('body-content')| {{ __('Serial') }} | {{ __('Name') }} | {{ __('Price') }} | {{ __('Payment Method') }} | {{ __('Payment Status') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
{{ ++$index }} |
|
{{ currency($order->total, 2) }} |
{{ $order->payment_method }} |
@if ($order->payment_status == App\Constants\Status::ENABLE) {{ __('Paid') }} @else {{ __('Paid') }} @endif | @if ($order->order_status == App\Constants\Status::APPROVED) {{ __('Approved') }} @elseif ($order->order_status == App\Constants\Status::PROCESSING) {{ __('Processing') }} @elseif ($order->order_status == App\Constants\Status::SHIPPED) {{ __('Shipped') }} @elseif ($order->order_status == App\Constants\Status::COMPLETED) {{ __('Completed') }} @elseif ($order->order_status == App\Constants\Status::REJECTED) {{ __('Rejected') }} @else {{ __('Pending') }} @endif | {{ __('View') }} |