179 lines
7.7 KiB
PHP
Executable file
179 lines
7.7 KiB
PHP
Executable file
@extends('layouts.layout-2')
|
||
|
||
@section('content')
|
||
<div class="card">
|
||
<h6 class="card-header">
|
||
{{__('Rollen')}}
|
||
</h6>
|
||
<div class="card-datatable table-responsive">
|
||
<table class="datatables-style table table-striped table-bordered">
|
||
<thead>
|
||
<tr>
|
||
<th style="max-width: 60px;"> </th>
|
||
<th>{{__('Pos')}}</th>
|
||
<th>{{__('Description')}}</th>
|
||
<th>{{__('Translate') }}</th>
|
||
<th>{{__('Status')}}</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
@foreach($values as $value)
|
||
<tr>
|
||
<td>
|
||
<a href="{{route('admin_level_edit', [$value->id])}}" class="btn icon-btn btn-sm btn-primary">
|
||
<span class="far fa-edit"></span>
|
||
</a>
|
||
{{--<button type="button" class="btn icon-btn btn-sm btn-primary" data-toggle="modal" data-target="#modals-default"
|
||
data-id="{{ $value->id }}"
|
||
data-pos="{{ $value->pos }}"
|
||
data-name="{{ $value->name }}"
|
||
data-content="{{ $value->content }}"
|
||
data-trans_name="{{ json_encode($value->trans_name) }}"
|
||
data-active="{{ $value->active }}">
|
||
<span class="far fa-edit"></span>
|
||
</button>--}}
|
||
</td>
|
||
<td>{{ $value->pos }}</td>
|
||
<td>{{ $value->name }}</td>
|
||
<td>{{ $value->getTranNames() }}</td>
|
||
<td data-sort="{{ $value->active }}">{!! get_active_badge($value->active) !!}</td>
|
||
</tr>
|
||
@endforeach
|
||
</tbody>
|
||
</table>
|
||
<div class="mt-4 ml-4">
|
||
<a href="{{route('admin_level_edit', ['new'])}}" class="btn btn-sm btn-primary">
|
||
{{__('Neue Rolle erstellen')}}
|
||
</a>
|
||
|
||
{{-- <button type="button" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#modals-default"
|
||
data-id="new"
|
||
data-pos=""
|
||
data-name=""
|
||
data-content=""
|
||
data-active="1"
|
||
>{{__('Neue Rolle erstellen')}}</button>
|
||
--}}
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
<script>
|
||
$( document ).ready(function() {
|
||
$('.datatables-style').dataTable({
|
||
"bLengthChange": false,
|
||
"iDisplayLength": 50,
|
||
"aoColumns": [
|
||
{ "sWidth": "8%" },
|
||
{ "sWidth": "8%" },
|
||
{ "sWidth": "19%" },
|
||
{ "sWidth": "19%" },
|
||
{ "sWidth": "30%" },
|
||
{ "sWidth": "10%" },
|
||
{ "sWidth": "8%" },
|
||
],
|
||
"language": {
|
||
"url": "/js/German.json"
|
||
}
|
||
});
|
||
});
|
||
</script>
|
||
|
||
|
||
<!-- Modal template -->
|
||
{{-- <div class="modal fade" id="modals-default">
|
||
<div class="modal-dialog">
|
||
<form class="modal-content" action="{{ route('admin_level_store') }}" method="post">
|
||
@csrf
|
||
<input type="hidden" class="form-control" name="id">
|
||
|
||
<div class="modal-header">
|
||
<h5 class="modal-title"> {{__('Rollen')}} <span class="font-weight-light">{{__('create/edit')}}</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="{{__('Bezeichnung')}}">
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-row">
|
||
<div class="form-group col">
|
||
<label for="name" class="form-label">{{__('Beschreibung')}}</label>
|
||
<textarea rows="8" class="form-control" name="content" placeholder="{{__('Beschreibung')}}"></textarea>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="form-row">
|
||
<div class="form-group col-6">
|
||
<label class="custom-control custom-checkbox m-2">
|
||
<input type="checkbox" class="custom-control-input" name="active" checked>
|
||
<span class="custom-control-label">{{__('active')}}</span>
|
||
</label>
|
||
</div>
|
||
<div class="form-group col-6">
|
||
<input type="text" class="form-control" name="pos" placeholder="{{__('Number to move the position if necessary')}}">
|
||
</div>
|
||
</div>
|
||
|
||
<hr>
|
||
@foreach($trans as $tran)
|
||
@if($tran != 'de')
|
||
<div class="form-row">
|
||
<div class="form-group col">
|
||
<label for="name" class="form-label">{{__('Translate')}} <strong style="text-transform: uppercase">{{$tran}}</strong></label>
|
||
<input type="text" class="form-control" name="trans[{{$tran}}]" id="trans_{{$tran}}" placeholder="">
|
||
</div>
|
||
</div>
|
||
@endif
|
||
@endforeach
|
||
</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() {
|
||
$('#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='pos']").val(button.data('pos'));
|
||
$(this).find(".modal-body textarea[name='content']").val(button.data('content'));
|
||
$(this).find(".modal-body input[name='active']").prop( "checked", button.data('active'));
|
||
|
||
$.each(button.data('trans_name'), function (i, item) {
|
||
var name = '#trans_'+i;
|
||
$(name).val(item);
|
||
});
|
||
|
||
|
||
});
|
||
|
||
$('.datatables-style').dataTable({
|
||
"bLengthChange": false,
|
||
"iDisplayLength": 50,
|
||
"aoColumns": [
|
||
{ "sWidth": "8%" },
|
||
{ "sWidth": "8%" },
|
||
{ "sWidth": "19%" },
|
||
{ "sWidth": "19%" },
|
||
{ "sWidth": "30%" },
|
||
{ "sWidth": "10%" },
|
||
{ "sWidth": "8%" },
|
||
],
|
||
"language": {
|
||
"url": "/js/German.json"
|
||
}
|
||
});
|
||
});
|
||
</script> --}}
|
||
@endsection
|