@extends('layouts.backend.app') @section('content') @include('layouts.backend.partials.headersection',['title'=> $info->name.' Information'])
{{ __('Primary Information') }}
@csrf
{{ __('Order History') }}
@foreach($orders as $row) @endforeach
{{ __('Order ID') }} {{ __('Status') }} {{ __('Amount') }} {{ __('Method') }} {{ __('Payment Status') }} {{ __('Created at') }} {{ __('View') }}
#{{ $row->id }} @if($row->status == 1) {{ __('Completed') }} @elseif($row->status == 2) {{ __('Pending') }} @elseif($row->status == 3) {{ __('Accepted') }} @elseif($row->status == 0) {{ __('Cancelled') }} @endif {{ $row->total+$row->shipping }} {{ strtoupper($row->payment_method) }} @if($row->payment_status == 1) {{ __('Completed') }} @else {{ __('pending') }} @endif {{ $row->created_at->diffforHumans() }}
{{ __('Order ID') }} {{ __('Status') }} {{ __('Amount') }} {{ __('Method') }} {{ __('Payment Status') }} {{ __('Created at') }} {{ __('View') }}
{{ $orders->links() }}
@endsection @section('script') @endsection