mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
33 lines
No EOL
736 B
PHP
33 lines
No EOL
736 B
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumb')
|
|
<li class="breadcrumb-item active" aria-current="page">Devices</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>User Agent</th>
|
|
<th></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 |