@extends('admin.layout.master') @section('page_title',ucfirst($type).'s') @section('title','Edit '.ucfirst($type)) @section('container') @if(Session::has('message'))
{{ Session::get('message') }}
@endif @if (Session::has('errors'))
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif Back

{{csrf_field()}}
@if($OrderServiceCharge) @endif
Order ID. # {{$OrderCompleted->oid}}
Commission Amount Rs. {{$OrderServiceCharge->commission_amount}}
Payment Method {{$OrderCompleted->payment_method}}
Comment {{$OrderCompleted->comment}}
Is Warrenty @if($OrderCompleted->is_warrenty) {{$OrderCompleted->warrenty_msg}} @else no @endif
Other Items Details {{$OrderCompleted->other_items_details}}
Other Items Total {{$OrderCompleted->other_items_total}}
Grand Total Rs. {{$OrderCompleted->grand_total}}
Completed Date 1st January 1970 12:00 AM
Date of service @if($order) 1st January 1970 @else Order Deleted @endif
Customer @if($user) {{$user->name}} @else Customer Deleted @endif
@endsection