@extends('layouts.manage') @section('title') @lang('View Orders') {{(isset($id)) ? __("for Customer ID: :id", ['id'=> $id]) : ""}} @endsection @section('page-header-title') @lang('View Orders') {{(isset($id)) ? __("for Customer ID: :id", ['id'=> $id]) : ""}} @endsection @section('page-header-description') @lang('View and Manage Orders') @endsection @section('styles') @if(config('settings.export_table_enable')) @endif @include('includes.datatable_style') @endsection @section('scripts') @include('partials.manage.dataTables-responsive') @if(config('settings.export_table_enable')) @include('partials.manage.dataTables-export') @else @endif @if(config('settings.toast_notifications_enable')) @endif @include('includes.form_delete_all_script'); @endsection @section('content')
@if(session()->has('order_deleted')) @endif @if(session()->has('order_not_deleted')) @endif @if(session()->has('order_updated')) @endif @if(session()->has('order_not_updated')) @endif @if(session()->has('order_passed_to_shipment')) @endif @include('partials.manage.orders.index')
@endsection