@extends('layouts.app') @section('title', __('Orders List')) @section('content') All Orders @component('components.filters', ['title' => __('report.filters')]) {!! Form::label('date_range', __('report.date_range') . ':') !!} Stores All @foreach($stores as $store) {{$store->name}} @endforeach Order Status All @foreach($orderStatus as $orderSt) {{$orderSt['name']}} @endforeach Payment Status All @foreach($paymentStatus as $paymentSt) {{$paymentSt['name']}} @endforeach @endcomponent SL ORDER ID ORDER DATE CUSTOMER INFORMATION STORE TOTAL AMOUNT ORDER STATUS @stop @section('javascript') @endsection