137 lines
No EOL
6.2 KiB
PHP
Executable file
137 lines
No EOL
6.2 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
||
|
||
@section('content')
|
||
<h4 class="font-weight-bold py-3 mb-1">
|
||
Reisestatus
|
||
</h4>
|
||
|
||
<div class="card">
|
||
|
||
<div class="card-datatable table-responsive">
|
||
<table class="datatables-default table table-striped table-bordered">
|
||
<thead>
|
||
<tr>
|
||
<th style="max-width: 60px;"> </th>
|
||
<th>{{__('Name')}}</th>
|
||
<th>{{__('Farbe')}}</th>
|
||
<th>{{__('Bearbeitung Tage')}}</th>
|
||
<th></th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
@foreach($status as $value)
|
||
<tr>
|
||
<td>
|
||
<button type="button" class="btn icon-btn btn-sm btn-primary" data-toggle="modal" data-target="#modals-default"
|
||
data-id="{{ $value->id }}"
|
||
data-name="{{ $value->name }}"
|
||
data-color="{{ $value->color }}"
|
||
data-handling_days="{{ $value->handling_days }}">
|
||
<span class="fa fa-edit"></span>
|
||
</button>
|
||
</td>
|
||
<td data-sort="{{ $value->id }}">{{ $value->name }}</td>
|
||
<td data-sort="{{ $value->color }}">
|
||
@if($value->color)
|
||
<div style="display:inline-block; width: 20px; height: 20px; border: 1px solid #888a85; background-color:{{$value->color}}"></div>
|
||
{{ $value->color }}
|
||
@else
|
||
<div style="display:inline-block; width: 20px; height: 20px; border: 1px solid #888a85; background-color: #fff"></div>
|
||
@endif
|
||
</td>
|
||
<td data-sort="{{ $value->handling_days }}">{{ $value->handling_days }}</td>
|
||
|
||
<td><a class="text-danger" href="{{ route('admin_settings_travel_nationality_delete', [$value->id]) }}" onclick="return confirm('{{__('Wirklich löschen?')}}');"><i class="fa fa-trash-alt"></i></a></td>
|
||
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
<div class="mt-4 col">
|
||
<button type="button" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#modals-default"
|
||
data-id="new"
|
||
data-name=""
|
||
data-handling_days="1"
|
||
>Neuen Status anlegen</button>
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<div class="modal fade" id="modals-default">
|
||
<div class="modal-dialog">
|
||
<form class="modal-content" action="{{ route('admin_settings_booking_status_update') }}" method="post">
|
||
@csrf
|
||
<input type="hidden" class="form-control" name="id">
|
||
|
||
<div class="modal-header">
|
||
<h5 class="modal-title">Status <span class="font-weight-light">anlegen/bearbeiten</span></h5>
|
||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
|
||
</div>
|
||
<div class="modal-body">
|
||
<div class="form-row">
|
||
<div class="form-group col">
|
||
<label for="name" class="form-label">Name*</label>
|
||
<input type="text" class="form-control" name="name" placeholder="{{__('Description')}}" required>
|
||
</div>
|
||
</div>
|
||
<div class="form-row">
|
||
<div class="form-group col">
|
||
<label for="name" class="form-label">Farbe*</label>
|
||
<input type="text" name="color" id="minicolors-hue" class="form-control" value="#fff">
|
||
</div>
|
||
</div>
|
||
<div class="form-row">
|
||
<div class="form-group col">
|
||
<label for="handling_days" class="form-label">Bearbeitungszeit in Tagen*</label>
|
||
<input type="text" class="form-control" name="handling_days" placeholder="{{__('Tage')}}" required>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="modal-footer">
|
||
<button type="button" class="btn btn-default" data-dismiss="modal">{{__('close')}}</button>
|
||
<button type="submit" class="btn btn-primary">{{__('save')}}</button>
|
||
</div>
|
||
</form>
|
||
|
||
</div>
|
||
</div>
|
||
|
||
|
||
<script>
|
||
$( document ).ready(function() {
|
||
|
||
$('#minicolors-hue').minicolors({
|
||
control: 'hue',
|
||
position: 'bottom ' + 'left',
|
||
});
|
||
|
||
$('#modals-default').on('show.bs.modal', function (event) {
|
||
var button = $(event.relatedTarget);
|
||
$(this).find(".modal-content input[name='id']").val(button.data('id'));
|
||
$(this).find(".modal-body input[name='name']").val(button.data('name'));
|
||
$(this).find(".modal-body input[name='handling_days']").val(button.data('handling_days'));
|
||
color = '#fff';
|
||
if(button.data('color') !== ""){
|
||
color = button.data('color');
|
||
}
|
||
$('#minicolors-hue').minicolors('value', color);
|
||
|
||
// $('.selectpicker').selectpicker('refresh');
|
||
$(this).find(".modal-body input[name='active']").prop( "checked", button.data('active'));
|
||
});
|
||
|
||
$('.datatables-types').dataTable({
|
||
"bLengthChange": false,
|
||
"iDisplayLength": 50,
|
||
"order": [[ 1, "desc" ]],
|
||
"language": {
|
||
"url": "/js/German.json"
|
||
}
|
||
});
|
||
});
|
||
</script>
|
||
|
||
</div>
|
||
|
||
|
||
@endsection |