2023-03-24 16:51:30 +01:00
|
|
|
@extends('layout')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<h1>Device Detail</h1>
|
2023-03-28 22:17:54 +02:00
|
|
|
|
2023-03-26 17:36:20 +02:00
|
|
|
<button><a href="{{$device->device_id}}/edit">Edit</a></button>
|
2023-03-26 18:16:26 +02:00
|
|
|
|
|
|
|
<form method="POST" action="{{$device->device_id}}">
|
|
|
|
@method('DELETE')
|
|
|
|
@csrf
|
|
|
|
<button>Delete</button>
|
|
|
|
</form>
|
2023-03-25 11:02:47 +01:00
|
|
|
@endsection
|