@extends('layout.app') <meta name="csrf-token" content="{{ csrf_token() }}"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script> @section('left-menu') @parent @if( auth()->check() ) @if( auth()->user()->fireStationID != NULL) @if(auth()->user()->accessLevel() == 50) <ul> <a href="/pojazdy/add"><li>Dodaj<img src="img/left_menu_icon/add.png"></li></a> </ul> @endif @endif @endif @stop @section('center-area') <meta name="csrf-token" content="{{ csrf_token() }}"> @parent @if( auth()->check()) @if( auth()->user()->fireStationID == NULL) Jednostka nie istnieje @else <table class='table'> <thead> <tr> <th>#</th> <th>Typ Pojazdu</th> <th>Marka</th> <th>Nr rej.</th> <th>Kryptonim</th> <th>Rok Produkcji</th> <th>Rodzaj napędu</th> <th>Przegląd</th> <th>OC</th> @if(auth()->user()->accessLevel() == 50) <th>Operacja</th> @endif </tr> </thead> @php $lp=0 // liczba porządkowa @endphp @foreach($vehicles as $vehicle) @php $lp = $lp + 1 @endphp <tr> <td>{{ $lp }}</td> <td id="name{{ $vehicle->id }}">{{ $vehicle->name }}</td> <td id="brand{{ $vehicle->id }}">{{ $vehicle->brand }}</td> <td id="registrationNumber{{ $vehicle->id }}">{{ $vehicle->registrationNumber }}</td> <td id="codename{{ $vehicle->id }}">{{ $vehicle->codename }}</td> <td id="productionYear{{ $vehicle->id }}">{{ $vehicle->productionYear }}</td> <td id="driveType{{ $vehicle->id }}">{{ $vehicle->driveType }}</td> <td id="examExpirationDate{{ $vehicle->id }}">{{ $vehicle->examExpirationDate }}</td> <td id="insuranceExpirationDate{{ $vehicle->id }}">{{ $vehicle->insuranceExpirationDate }}</td> @if(auth()->user()->accessLevel() == 50) <td style="display:inline;"> <a href="{{ URL::asset('pojazdy/edit/'.$vehicle->id) }}" class="btn btn-secondary" role="button">Edytuj</a> <button class="btn btn-danger" type="submit" id="{{$vehicle->id}}" onclick="deleteButton('{{$vehicle->id}}')">Usuń</button> @if ($vehicle->status == 1) <form method="POST" action="/pojazdy/deactivate" style="display:inline;"> {{ csrf_field() }} <input type="hidden" class="form-control" name="vehicleID" value="{{ $vehicle->id }}"> <button style="cursor:pointer" type="submit" class="btn btn-primary">Zawieś</button> </form> @elseif ($vehicle->status == 0) <form method="POST" action="/pojazdy/activate" style="display:inline;" > {{ csrf_field() }} <input type="hidden" class="form-control" name="vehicleID" value="{{ $vehicle->id }}"> <button style="cursor:pointer" type="submit" class="btn btn-primary">Przywróć do służby</button> </form> @endif </td> @endif </tr> @endforeach </table> {{ $vehicles->links() }} @endif @else Brak autoryzacji @endif @stop <script> function deleteButton(vehicleID){ swal.fire({ title: "Czy chcesz usunąć pojazd?", width: 'auto', confirmButtonText: 'Tak', cancelButtonText: 'Nie', showCancelButton: true, }).then((result) => { if(result.value){ $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content') } }); $.ajax({ url: "pojazdy/"+vehicleID, type: 'DELETE', data: { "id": vehicleID, }, success: function (){ console.log("it Works"); location.reload(); } }); } }) } </script>