Booking, QI Content, Trees, Media
This commit is contained in:
parent
1f340e96fa
commit
7fbac395a9
260 changed files with 27160 additions and 3773 deletions
|
|
@ -21,8 +21,8 @@
|
|||
<div class="card-body">
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label" for="widget_title">{{ __('Name') }}*</label>
|
||||
{{ Form::text('name', $model->name, array('placeholder'=>__('Name'), 'class'=>'form-control', 'id'=>'widget_name', 'required'=>true)) }}
|
||||
<label class="form-label" for="name">{{ __('Name') }}*</label>
|
||||
{{ Form::text('name', $model->name, array('placeholder'=>__('Name'), 'class'=>'form-control', 'id'=>'name', 'required'=>true)) }}
|
||||
</div>
|
||||
<div class="form-group col-sm-2">
|
||||
<label class="form-label"> </label>
|
||||
|
|
@ -46,6 +46,12 @@
|
|||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label" for="slug">{{ __('Slug') }}</label>
|
||||
{{ Form::text('slug', $model->slug, array('placeholder'=>__('Slug'), 'class'=>'form-control', 'id'=>'slug')) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="show_active_frontend" @if(!$model->active_frontend) style="display: none;" @endif>
|
||||
<hr>
|
||||
|
|
@ -56,8 +62,20 @@
|
|||
<label class="form-label" for="html_information">{{ __('Landinformationen (HTML)') }} </label>
|
||||
{{ Form::textarea('html_information', $model->html_information, ['class' => 'form-control summernote-small']) }}
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="form-row">
|
||||
<div class="form-group col-sm-12">
|
||||
<label class="form-label" for="text_before">{{ __('Formular Text vor der Reise (max. 255 Zeichen)') }} </label>
|
||||
{{ Form::text('text_before', $model->text_before, ['class' => 'form-control', 'maxlength'=>'255']) }}
|
||||
</div>
|
||||
<div class="form-group col-sm-12">
|
||||
<label class="form-label" for="html_information">{{ __('Formular Text nach der Reise ( max. 255 Zeichen)') }} </label>
|
||||
{{ Form::text('text_after', $model->text_after, ['class' => 'form-control', 'maxlength'=>'255']) }}
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
<h5>Einreisebestimmungen</h5>
|
||||
@foreach($travel_nationalities as $travel_nationality)
|
||||
<div class="form-row">
|
||||
|
|
|
|||
|
|
@ -15,6 +15,8 @@
|
|||
<tr>
|
||||
<th style="max-width: 60px;"> </th>
|
||||
<th>{{__('Name')}}</th>
|
||||
<th>{{__('Slug')}}</th>
|
||||
|
||||
<th><i class="far fa-eye"></i> {{__('Seite')}}</th>
|
||||
<th><i class="far fa-eye"></i> {{__('CRM')}}</th>
|
||||
<th><i class="far fa-eye"></i> {{__('Kunden')}}</th>
|
||||
|
|
@ -30,7 +32,7 @@
|
|||
</a>
|
||||
</td>
|
||||
<td><a href="{{ route('admin_settings_travel_country_detail', [$value->id]) }}">{{ $value->name }}</a></td>
|
||||
|
||||
<td>{{ $value->slug }}</td>
|
||||
<td data-sort="{{ $value->active_frontend }}">
|
||||
@if($value->active_frontend)
|
||||
<span class="badge badge-pill badge-success"><i class="far fa-check"></i></span>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue