1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-28 19:27:08 +02:00

Added OS controller views

Added OS controller views
This commit is contained in:
cp6 2022-02-19 23:57:06 +11:00
parent cb471bd71a
commit 1000148e86
2 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,36 @@
@section('title') {{'Insert operating system'}} @endsection
<x-app-layout>
<x-slot name="header">
{{ __('Insert a new OS') }}
</x-slot>
<div class="container">
<x-card class="shadow mt-3">
<h4 class="mb-3">Operating system name</h4>
<x-back-button>
<x-slot name="href">{{ route('os.index') }}</x-slot>
Go back
</x-back-button>
<x-errors-alert></x-errors-alert>
<form action="{{ route('os.store') }}" method="POST">
@csrf
<div class="row">
<div class="col-12 col-lg-6 mb-4">
<div class="input-group">
<div class="input-group-prepend"><span class="input-group-text">OS</span></div>
<input type="text"
class="form-control"
name="os_name" minlength="2" maxlength="255" required>
@error('os') <span class="text-red-500">{{ $message }}
</span>@enderror
</div>
</div>
</div>
<div class="row">
<div class="col-12 col-lg-4">
<x-submit-button>Create Operating system</x-submit-button>
</div>
</div>
</form>
</x-card>
</div>
</x-app-layout>

View File

@ -0,0 +1,72 @@
@section('title') {{'Operating systems'}} @endsection
@section('css_links')
<link rel="stylesheet" href="{{ asset('css/datatables.bootstrap.min.css') }}">
@endsection
@section('style')
<x-modal-style></x-modal-style>
@endsection
<x-app-layout>
<x-slot name="header">
{{ __('Operating systems') }}
</x-slot>
<div class="container" id="app">
<x-delete-confirm-modal></x-delete-confirm-modal>
<x-card class="shadow mt-3">
<a href="{{ route('os.create') }}" class="btn btn-primary mb-3">Add an OS</a>
<x-success-alert></x-success-alert>
<table class="table table-bordered" id="os-table">
<thead class="table-light">
<tr class="bg-gray-100">
<th>Operating system</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
@if(!empty($os))
@foreach($os as $o)
<tr>
<td class="text-nowrap">{{ $o->name }}</td>
<td class="text-nowrap">
<form action="{{ route('locations.destroy', $o->id) }}" method="POST">
<i class="fas fa-trash text-danger ms-3" @click="modalForm"
id="btn-{{$o->name}}" title="{{$o->id}}"></i>
</form>
</td>
</tr>
@endforeach
@else
<tr>
<td class="px-4 py-2 border text-red-500" colspan="3">No Operating systems found.</td>
</tr>
@endif
</tbody>
</table>
</x-card>
@if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1)
<p class="text-muted mt-4 text-end"><small>
Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}
)</small>
</p>
@endif
</div>
<x-datatables-assets></x-datatables-assets>
<script type="text/javascript">
$(document).ready(function () {
$('#os-table').DataTable({
"pageLength": 15,
"lengthMenu": [5, 10, 15, 25, 30, 50, 75, 100],
"columnDefs": [
{"orderable": false, "targets": 1}
],
"initComplete": function () {
$('.dataTables_length,.dataTables_filter').addClass('mb-2');
$('.dataTables_paginate').addClass('mt-2');
$('.dataTables_info').addClass('mt-2 text-muted ');
}
});
});
</script>
<x-modal-delete-script>
<x-slot name="uri">os</x-slot>
</x-modal-delete-script>
</x-app-layout>