@extends('layout.admin.master') @section('meta-title', 'Orders') @section('body-class', 'menu-position-side menu-side-left full-screen with-content-panel') @section('breadcrumbs') @endsection @push('asset-top') @endpush @section('content')
Orders
@foreach($orders as $key=>$order) @endforeach
# Name Email Role Status Action
{{$key+1}} {{$order->name}} {{$order->email}} {{ucwords($order->role)}}
{{ $orders->links() }}
@endsection