@extends('layouts.admin')
@section('title', 'ဂိုဒေါင်အသေးစိတ်ပုံစံ')
@section('content')
@push('styles')
@endpush
@push('scripts')
@endpush
{{ number_format($townships->count()) }}
ပေးပို့မြို့နယ်များ
{{ number_format($orders->count()) }}
ယခုလအတွင်းအော်ဒါများ
{{ number_format($remainingPercentage) }}%
ကျန်ရှိသောပစ္စည်းများ
နာမည် |
ဒေသ |
မြို့နယ် |
{{ $warehouse->name }} |
{{ $warehouse->region->name }} |
{{ $warehouse->township->name }} |
@if($townships->count() > 0)
အမည် |
ဒေသ |
စာတိုက်သင်္ကေတ |
လတ္တီတွဒ် |
လောင်ဂျီတွဒ် |
ပို့ခ |
@foreach ($townships as $key => $value)
{{ $value->township->name }} |
{{ $value->township->region->name }} |
{{ !empty($value->township->postal_code)? $value->township->postal_code : '' }} |
{{ !empty($value->township->latitude)? $value->township->latitude : '' }} |
{{ !empty($value->township->longitude)? $value->township->longitude : '' }} |
{{ !empty($value->township->delivery_charge)? number_format($value->township->delivery_charge) . ' MMK' : '' }} |
@endforeach
@endif
@if($orders->count() > 0)
စုစုပေါင်းကုန်ကျစရိတ် |
ပစ္စည်းအရေအတွက် |
ပေးပို့ရန်မြို့နယ် |
ဝယ်သူအမည် |
ဆက်သွယ်ရန်ဖုန်း |
အခြေအနေ |
@foreach ($orders as $key => $value)
{{ number_format($value->total_cost) }} MMK |
{{ $value->getTotalNumberofItems() }} |
{{ $value->township->name }} |
{{ $value->name }} |
{{ $value->phone }} |
@if(empty($value->activeProgress()))
အော်ဒါအသစ်
@elseif($value->activeProgress()->status == 1)
လက်ခံပြီး
@elseif($value->activeProgress()->status == 2)
ငြင်းပယ်ပြီး
@elseif($value->activeProgress()->status == 3)
ပို့စဉ်အတွင်း
@elseif($value->activeProgress()->status == 4)
ရောက်ပြီး
@endif
|
@endforeach
@endif
@if($products->count() > 0)
နံပါတ် |
ထုတ်ကုန်နံပါတ် |
အရေအတွက် |
@endif
@if($parts->count() > 0)
ရုပ်ပုံ |
နာမည် |
အင်ဂျင်မော်ဒယ် |
အစိတ်အပိုင်းနံပါတ် |
ဈေးနှုန်း |
လက်ကျန်အရေအတွက် |
@foreach ($parts as $key => $value)
@if(!empty($value->thumbnail))
@endif
|
{{ $value->name }} |
{{ $value->engine_model }} |
{{ $value->valve_number }} |
{{ number_format($value->default_price) }} MMK |
{{ number_format($remainingPartsArr[$value->id]) }} |
@endforeach
@endif
@endsection