@extends('layouts.admin.index') @section('content')
@csrf
@if($errors->has('file_no')) {{ $errors->first('file_no') }} @endif
@if($errors->has('booking_date')) {{ $errors->first('booking_date') }} @endif
@if($errors->has('customer_id')) {{ $errors->first('customer_id') }} @endif
@if($errors->has('project_id')) {{ $errors->first('project_id') }} @endif
@php $where = [] ; if(isset($booking)){ $where[] = ['project_id','=',$booking->project_id]; }else{ $where[] = ['id','=',-1]; } @endphp @if($errors->has('block_id')) {{ $errors->first('block_id') }} @endif
@php $where = [] ; if(isset($booking)){ $where[] = ['block_id','=',$booking->block_id]; }else{ $where[] = ['id','=',-1]; } @endphp @if($errors->has('road_id')) {{ $errors->first('road_id') }} @endif
@if($errors->has('plot_facing')) {{ $errors->first('plot_facing') }} @endif
@if($errors->has('plot_type')) {{ $errors->first('plot_type') }} @endif
@php $where = [] ; if(isset($booking)){ $where[] = ['road_id','=',$booking->road_id]; }else{ $where[] = ['id','=',-1]; } @endphp @if($errors->has('plot_id')) {{ $errors->first('plot_id') }} @endif
@isset($booking)
{{ __('cruds.plot_facing') }} @isset($booking) {{ isset($booking->plot)?$booking->plot->plot_facing:'' }} @endisset {{ __('cruds.plot_type') }} {{ isset($booking)?(isset($booking->plot)?$booking->plot->type->type_name:''):'' }}
{{ __('cruds.plot_size') }} {{ isset($booking)?(isset($booking->plot)?$booking->plot->plot_size:''):'' }} {{ __('cruds.plot_price') }} (*)
@endisset
@endsection @section('scripts') @parent @endsection