@extends('layouts.vendor.app') @section('title', 'Cancel Order List') @push('css') @endpush @section('content') Cancel Order List Home Cancel Order List Cancel Order List SL Name Phone Payment Subtotal Discount Total Date Action @foreach ($orders as $key => $data) {{$key + 1}} {{$data->first_name}} {{$data->phone}} {{$data->payment_method}} {{$data->subtotal}} {{$data->discount}} {{$data->total}} {{date('d M Y', strtotime($data->created_at))}} @endforeach @endsection @push('js') @endpush