@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('title')

Order delivery Setup

@endsection @section('main-content')

Order # {{ $order->order_id }}

{{ Form::label('Order Date') }} {{ \Carbon\Carbon::parse($order->created_at)->format('M d, Y h:i a') }}

{{ Form::label('Total Amount') }} {{ number_format($order->grand_total, 2, '.', ',') }}

{{-- Form::label('Payment Method') }} {{ $order->transaction ? $order->transaction->paymentMethod->payment_method_name : 'Not Available' --}}