227 lines
No EOL
11 KiB
PHP
Executable file
227 lines
No EOL
11 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
|
|
|
@section('content')
|
|
|
|
<h4 class="font-weight-bold py-3 mb-1">
|
|
Vorlage verwalten
|
|
</h4>
|
|
|
|
|
|
{!! Form::open(['url' => route('draft_detail', [$id]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!}
|
|
|
|
<input type="hidden" name="id" id="id" value="{{$id}}">
|
|
|
|
<!-- draft -->
|
|
<div class="card mb-2">
|
|
<div class="card-body">
|
|
<div class="form-group">
|
|
<label class="custom-control custom-checkbox float-right">
|
|
{!! Form::checkbox('active', 1, $draft->active, ['class'=>'custom-control-input']) !!}
|
|
<span class="custom-control-label">{{__('sichtbar')}}</span>
|
|
</label>
|
|
|
|
<label class="form-label" for="draft_name">{{ __('Bezeichnung') }}*</label>
|
|
{{ Form::text('name', $draft->name, array('placeholder'=>__('Name'), 'class'=>'form-control', 'id'=>'draft_name', 'required'=>true)) }}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@if(count($draft->draft_items))
|
|
@php($i = 1)
|
|
<div class="text-right mb-2">
|
|
<button type="submit" name="action" value="addItem" class="btn btn-sm btn-primary"><i class="far fa-plus"></i> Neue Leistung hinzufügen</button>
|
|
</div>
|
|
@foreach($draft->draft_items as $draft_item)
|
|
<!-- item -->
|
|
<div class="card mb-2">
|
|
|
|
<div class="card-body row">
|
|
|
|
|
|
<div class="form-group col-sm-4">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$draft_item->id}}][draft_type_id]" id="draft_item_{{$draft_item->id }}_draft_type_id" data-live-search="true" required>
|
|
<option value="" disabled>Vorlagen-Typ*</option>
|
|
{!! HTMLHelper::getDraftTypes($draft_item->draft_type_id) !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-3 col-6">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$draft_item->id}}][days_start]]" id="draft_item_{{$draft_item->id }}_days_start">
|
|
<option value="">(Datum) Start + Tage</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item->days_start, 30, ' Tag(e)') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-3 col-6">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$draft_item->id}}][days_duration]" id="draft_item_{{$draft_item->id }}_days_duration">
|
|
<option value="">(Datum) Dauer + Tage</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item->days_duration, 30, ' Tag(e)') !!}
|
|
</select>
|
|
</div>
|
|
<div class="form-group col-sm-2 text-right">
|
|
<h5 class="float-right mt-1">#{{ $i++ }} </h5>
|
|
<button type="submit" name="action" value="up_{{$draft_item->id}}" class="btn btn-xs btn-default"><i class="fa fa-arrow-up"></i> </button>
|
|
<button type="submit" name="action" value="down_{{$draft_item->id}}" class="btn btn-xs btn-default mr-2"><i class="fa fa-arrow-down"></i> </button>
|
|
</div>
|
|
|
|
|
|
<div class="form-group col-sm-12">
|
|
{{ Form::textarea('draft_item['.$draft_item->id.'][service]', $draft_item->service, array('placeholder'=>__('Leistungen'), 'class'=>'form-control', 'id'=>'draft_item_'.$draft_item->id.'_service', 'rows'=>'1')) }}
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$draft_item->id}}][adult]" id="draft_item_{{$draft_item->id }}_adult">
|
|
<option value="">Teilnehmer</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item->adult, 10, ' T.') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">€</span>
|
|
</div>
|
|
{{ Form::text('draft_item['.$draft_item->id.'][price_adult]', $draft_item->price_adult, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$draft_item->id.'_price_adult',)) }}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$draft_item->id}}][children]" id="draft_item_{{$draft_item->id}}_children">
|
|
<option value="">Kinder</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item->children, 10, ' K.') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">€</span>
|
|
</div>
|
|
{{ Form::text('draft_item['.$draft_item->id.'][price_children]', $draft_item->price_children, array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$draft_item->id.'_price_children')) }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<label class="custom-control custom-checkbox mt-2">
|
|
{!! Form::checkbox('draft_item['.$draft_item->id.'][in_pdf]', 1, $draft_item->in_pdf, ['class'=>'custom-control-input']) !!}
|
|
<span class="custom-control-label">{{__('in PDF')}}</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-6">
|
|
<div class="text-right mt-3">
|
|
<a class="text-danger" href="{{ route('draft_item_delete', [$draft_item->id]) }}" onclick="return confirm('{{__('Wirklich löschen?')}}');"><i class="far fa-trash-alt"></i></a>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
@endforeach
|
|
@endif
|
|
|
|
@if(!empty($draft_items))
|
|
|
|
@foreach($draft_items as $key => $draft_item)
|
|
<!-- item -->
|
|
<div class="card mb-2">
|
|
|
|
<div class="card-body row">
|
|
|
|
<div class="form-group col-sm-6">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$key}}][draft_type_id]" id="draft_item_{{$key }}_draft_type_id" data-live-search="true" required>
|
|
<option value="" disabled>Vorlagen-Typ*</option>
|
|
{!! HTMLHelper::getDraftTypes($draft_item['draft_type_id']) !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-3 col-6">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$key}}][days_start]]" id="draft_item_{{$key }}_days_start">
|
|
<option value="">(Datum) Start + Tage</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item['days_start'], 30, ' Tag(e)') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-3 col-6">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$key}}][days_duration]" id="draft_item_{{$key }}_days_duration">
|
|
<option value="">(Datum) Dauer + Tage</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item['days_duration'], 30, ' Tag(e)') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-12">
|
|
{{ Form::textarea('draft_item['.$key.'][service]', $draft_item['service'], array('placeholder'=>__('Leistungen'), 'class'=>'form-control', 'id'=>'draft_item_'.$key.'_service', 'rows'=>'1')) }}
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$key}}][adult]" id="draft_item_{{$key }}_adult">
|
|
<option value="">Teilnehmer</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item['adult'], 10, ' T.') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">€</span>
|
|
</div>
|
|
{{ Form::text('draft_item['.$key.'][price_adult]', $draft_item['price_adult'], array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$key.'_price_adult',)) }}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<select class="selectpicker" data-style="btn-light" name="draft_item[{{$key}}][children]" id="draft_item_{{$key}}_children">
|
|
<option value="">Kinder</option>
|
|
{!! HTMLHelper::getRangeOptions($draft_item['children'], 10, ' K.') !!}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<div class="input-group">
|
|
<div class="input-group-prepend">
|
|
<span class="input-group-text">€</span>
|
|
</div>
|
|
{{ Form::text('draft_item['.$key.'][price_children]', $draft_item['price_children'], array('placeholder'=>__('Preis in €'), 'class'=>'form-control', 'id'=>'draft_item_'.$key.'_price_children')) }}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group col-sm-2 col-3">
|
|
<label class="custom-control custom-checkbox mt-2">
|
|
{!! Form::checkbox('draft_item['.$key.'][in_pdf]', 1, $draft_item['in_pdf'], ['class'=>'custom-control-input']) !!}
|
|
<span class="custom-control-label">{{__('in PDF')}}</span>
|
|
</label>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@endforeach
|
|
|
|
<div class="text-left mt-3">
|
|
<button type="submit" name="action" value="saveAllFromOld" class="btn btn-submit">{{ __('aus Vorlage speichern') }}</button>
|
|
<a href="{{route('drafts')}}" class="btn btn-default">{{ __('back') }}</a>
|
|
</div>
|
|
@else
|
|
<div class="text-right">
|
|
<button type="submit" name="action" value="addItem" class="btn btn-sm btn-primary"><i class="far fa-plus"></i> Neue Leistung hinzufügen</button>
|
|
</div>
|
|
|
|
<div class="text-left mt-3">
|
|
<button type="submit" name="action" value="saveAll" class="btn btn-submit">{{ __('save changes') }}</button>
|
|
<a href="{{route('drafts')}}" class="btn btn-default">{{ __('back') }}</a>
|
|
</div>
|
|
@endif
|
|
|
|
{!! Form::close() !!}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@endsection |