@extends('admin.layout') @section('title') Orders @endsection @section('content')

Orders

@if(session()->has('success'))
@endif @if(session()->has('errorMessage'))
@endif
@foreach($orders as $key => $order) @endforeach
# User name Address Paid Total price
{{ $key + 1 }} {{ $order->name }} {{ $order->address }} @if($order->is_paid == 1) True @else False @endif ${{ $order->total_price }}
# User name Address Paid Total price
@endsection @section('pageScripts') @endsection