@extends('layouts.dashboard') @section('page_title') View Booking @endsection @section('page_body') {{ Breadcrumbs::render('cancelbooking_detail',Crypt::encrypt($booking->id),($plot->plot_id.' '.$plot->type)) }} @if($booking->status == 'Unapprove') @include('booking.approve_booking') @else @php($label_list = EF::getWhiteLabel())
Booking Information
{{$plot->plot_id}} {{$plot->type}}, {{$plot->category}}
{{EF::numberFormat($booking->rate_per_marla)}}
{{EF::numberFormat($booking->discount)}}
{{EF::numberFormat($booking->feature_charges)}}
{{EF::numberFormat($booking->agreed_amount)}}
@php($balance_detail = $booking->getBalanceDetail($booking->id))
{{EF::numberFormat($balance_detail['debit'])}}
{{EF::numberFormat($balance_detail['credit'])}}
{{EF::dateFormat($booking->created_at)}}
{{EF::dateFormat($booking->approve_date)}}
@include('booking.manage_canceldetails')
@endif @endsection @section('page_modal') @endsection @section('page_script') @include('scripts.payment') @endsection