@extends('layouts.backend.master')
@section('title', trans('backend.titles.orders'))
@section('styles')
@css('backend/css/sweetalert.min.css')
@css('backend/css/datatables.bundle.css')
@endsection
@section('content')
@include('backend.orders.tables.index')
@endsection
@section('scripts')
@js('backend/js/sweetalert.min.js')
@js('backend/js/datatables.bundle.js')
@include('backend.includes.plugins.datatable',['columns'=>['id','firstname','lastname','phone','email','total_amount','order_status','actions'], 'route'=>route('backend.orders.index')])
@endsection