@extends('admin.layouts.main') @section('styles') @endsection @section('content')

Orders

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (session()->has('message'))
{{session('message')}}
@endif
@if (session()->has('hasError'))
{{session('hasError')}}
@endif

Order Details

UserName :
Address :
Total Items :
Total Price :
OrderStatus :

Items Details

Product Name Quantity Total Price Image Category
@endsection @section('custom-script') @endsection