last changes since 6-2023
This commit is contained in:
parent
561c5875a7
commit
c1c613a4b9
53 changed files with 1351 additions and 93 deletions
30
resources/views/travel/content/modal_copy.blade.php
Normal file
30
resources/views/travel/content/modal_copy.blade.php
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{!! Form::open([ 'url' => route('travel_content_update'), 'method' => 'post', 'class' => 'modal-content' ]) !!}
|
||||
{{ Form::hidden('action', 'page-copy') }}
|
||||
{{ Form::hidden('step', false) }}
|
||||
{{ Form::hidden('id', $value->id) }}
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">Neue Unterseite <span class="font-weight-light">kopieren/anlegen</span></h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
||||
|
||||
<div class="form-row">
|
||||
<label class="form-label" for="page_copy_id">kopieren aus Unterseite</label>
|
||||
<select class="custom-select" name="page_copy_id" id="page_copy_id">
|
||||
@foreach($value->child_pages as $child_page)
|
||||
<option value="{{$child_page->id}}">{{$child_page->title}}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
|
||||
</div>
|
||||
<hr>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">{{__('close')}}</button>
|
||||
<button type="submit" class="btn btn-primary submit-button-form">{{__('save')}}</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue