73 lines
3.1 KiB
PHP
73 lines
3.1 KiB
PHP
<div class="modal fade" id="add_booking_modal" tabindex="-1" role="dialog"
|
|
aria-labelledby="gridSystemModalLabel">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content crm-modal-form">
|
|
|
|
{!! Form::open(['url' => action([\Modules\Crm\Http\Controllers\ContactBookingController::class, 'store']), 'method' => 'post', 'id' => 'add_booking_form' ]) !!}
|
|
{!! Form::hidden('contact_id', auth()->user()->crm_contact_id); !!}
|
|
{!! Form::hidden('booking_status', 'waiting'); !!}
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title">@lang( 'restaurant.add_booking' )</h4>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
@if(count($business_locations) == 1)
|
|
@php
|
|
$default_location = current(array_keys($business_locations->toArray()))
|
|
@endphp
|
|
@else
|
|
@php $default_location = null; @endphp
|
|
@endif
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<span class="input-group-addon">
|
|
<i class="fa fa-map-marker"></i>
|
|
</span>
|
|
{!! Form::select('location_id', $business_locations, $default_location, ['class' => 'form-control', 'placeholder' => __('purchase.business_location'), 'required', 'id' => 'booking_location_id']); !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="clearfix"></div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
{!! Form::label('status', __('restaurant.start_time') . ':*') !!}
|
|
<div class='input-group date' >
|
|
<span class="input-group-addon">
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
|
</span>
|
|
{!! Form::text('booking_start', null, ['class' => 'form-control','placeholder' => __( 'restaurant.start_time' ), 'required', 'id' => 'start_time', 'readonly']); !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
{!! Form::label('status', __('restaurant.end_time') . ':*') !!}
|
|
<div class='input-group date' >
|
|
<span class="input-group-addon">
|
|
<span class="glyphicon glyphicon-calendar"></span>
|
|
</span>
|
|
{!! Form::text('booking_end', null, ['class' => 'form-control','placeholder' => __( 'restaurant.end_time' ), 'required', 'id' => 'end_time', 'readonly']); !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-12">
|
|
<div class="form-group">
|
|
{!! Form::label('booking_note', __( 'restaurant.customer_note' ) . ':') !!}
|
|
{!! Form::textarea('booking_note', null, ['class' => 'form-control','placeholder' => __( 'restaurant.customer_note' ), 'rows' => 3 ]); !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="submit" class="btn btn-primary">@lang( 'messages.save' )</button>
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">@lang( 'messages.close' )</button>
|
|
</div>
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</div><!-- /.modal-content -->
|
|
</div><!-- /.modal-dialog -->
|
|
</div> |