flexisip-account-manager/flexiapi/resources/views/account/devices/index.blade.php
Timothée Jaussoin fc96338bfb Redesign the UI
2023-06-09 08:24:49 +00:00

33 lines
No EOL
780 B
PHP

@extends('layouts.main')
@section('breadcrumb')
<li class="breadcrumb-item active" aria-current="page">Devices</li>
@endsection
@section('content')
<table class="table table-responsive-md">
<thead>
<tr>
<th scope="col">User Agent</th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
@foreach ($devices as $device)
<tr>
<td>{{ $device->user_agent }}</td>
<td>
<a type="button"
class="btn btn-danger"
href="{{ route('account.device.delete', $device->uuid) }}">
Delete
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
@endsection