@extends('admin.layouts.app')
@section('title', 'Customer Detail')
@section('page_css')
@endsection
@section('section')
| First Name |
{{ $content->first_name ?? '' }} |
Last Name |
{{ $content->last_name ?? '' }} |
| Email |
{{ $content->email ?? '' }} |
Phone |
{{ $content->phone_no ?? '' }} |
| City |
{{ $content->city ?? '' }} |
State |
{{ $content->state ?? '' }} |
| Country |
{{ $content->country ?? '' }} |
Address |
{{ $content->address ?? '' }} |
| ID Card Image |
}}) |
| S.No |
Order No |
Total |
Status |
Order Date |
@php $counter=1 @endphp
@foreach ($customerOrders as $orders)
| {{ $counter++ }} |
{{ $orders->order_no }} |
{{ $orders->total_amount }} |
{{ ucfirst($orders->order_status) }} |
{{ date("d-M-Y",strtotime($orders->created_at)) }} |
@endforeach
@endsection
@section('script')
@endsection