@extends('layouts.vendor.app') @section('title', 'Processing Order List') @push('css') @endpush @section('content')

Processing Order List

Processing Order List

@foreach ($orders as $key => $data) @endforeach
SL Name Phone Payment Subtotal Discount Total Date Action
{{$key + 1}} {{$data->first_name}} {{$data->phone}} {{$data->payment_method}} {{$data->subtotal}} {{$data->discount}} {{$data->total}} {{date('d M Y', strtotime($data->created_at))}}
@endsection @push('js') @endpush