@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
# User Email Payment Type Subtotal Discount IP Status Action
#00{{$order->id}} {{$order->billing_name}} {{$order->billing_email}} {{ucwords($order->pay_type)}} {{$order->subtotal}} {{($order->discount)?$order->discount:0}} {{$order->ip}}
{{ $orders->links() }}
@endsection