@extends('layouts.admin.index') @section('content')
{{ trans('cruds.booking_list') }}
@foreach($reserve_show as $key=>$show) @endforeach
Sl {{ trans('cruds.project_name') }} {{ trans('cruds.block_name') }} {{ trans('cruds.road_name') }} {{ trans('cruds.plot_facing') }} {{ trans('cruds.plot') }} {{ trans('cruds.plot_size') }} {{ trans('cruds.sales_executive_person') }} {{ trans('cruds.unit_name') }} {{ trans('cruds.reserve_reason') }} {{ trans('cruds.upto_reserve_date') }} {{ trans('cruds.status') }} {{ trans('cruds.actions') }}
{{ $key + 1 }} {{ $show->project->project_name ?? '' }} {{ $show->block->block_name ?? '' }} {{ $show->road->road_name ?? '' }} {{ $show->plot_facing ?? '' }} {{ $show->plot->plot_name ?? '' }} {{ $show->plot_size ?? '' }} {{ $show->executive->name ?? '' }} {{ $show->unit->unit_name ?? '' }} {{ $show->reserve_reason ?? '' }} {{ $show->reserve_upto_date ?? '' }} {{ $show->status ?? '' }} @if(edit()) id) }}"> @endif @if(delete())
id) }}" method="POST" onsubmit="return confirm('{{ trans('cruds.areYouSure') }}');" style="display: inline-block;"> @method('DELETE') @csrf
@endif
@endsection @section('scripts') @parent @endsection