@extends('layouts.app') @section('title', 'Orders | Shopping Cart') @section('extrastyles') {{-- --}} @endsection @section('content')
Manage Orders
{!! Form::open(['novalidate' => 'novalidate', 'onsubmit' => 'return exportOrder(this);']) !!}
{{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- to--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}}
{!! Form::select('orders_country' , \App\Order::orderCountries() , null , ['class' => 'form-control', 'id' => 'orders_country']) !!}
{!! Form::select('orders_currency' , \App\Order::orderCurrencies() , null , ['class' => 'form-control', 'id' => 'orders_currency']) !!}
{!! Form::select('orders_search' , \App\Order::searchOrder() , null , ['class' => 'form-control', 'id' => 'orders_search']) !!}
{!! Form::select('orders_statuses' , \App\Order::OrderStatuses() , null , ['class' => 'form-control', 'id' => 'orders_statuses']) !!}
{!! Form::select('orders_type' , \App\Order::orderType() , null , ['class' => 'form-control', 'id' => 'orders_type']) !!}
{!! Form::close() !!}
@if(!empty($fraudServiceName)) @endif
Order Number Name Price Status{{$fraudServiceName}}Date
@endsection @section('footer') {{-- --}} @endsection