2023-03-24 16:51:30 +01:00
|
|
|
@extends('layout')
|
|
|
|
|
|
|
|
@section('content')
|
2023-03-30 15:16:38 +02:00
|
|
|
<x-device-detail :device="$device" />
|
2023-03-26 18:16:26 +02:00
|
|
|
|
2023-03-30 15:16:38 +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
|