| Server IP : 172.67.168.138 / Your IP : 216.73.216.227 [ Web Server : Apache System : Linux frog 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web13 ( 5017) PHP Version : 8.3.31 Disable Function : NONE Domains : 41 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client12/web13/web/ahelos/resources/views/layouts/backend/roles/ |
Upload File : |
@extends('layouts.backend.index', ['module_title' => 'Роли', 'create_url' => route('roles.create')])
@section('content')
@if(session('danger'))
<div class="alert alert-danger">
{{ session('danger') }}
</div>
@endif
<div class="card">
<div class="card-body">
<div class="table-responsive">
<table class="table table-sm table-hover">
<thead>
<tr>
<th>Заглавие</th>
<th class="text-center">Дата създаване</th>
<th class="text-center">Дата обновяване</th>
<th></th>
</tr>
</thead>
<tbody>
@foreach($roles as $key => $row)
<tr>
<td>{{ $row->name }}</td>
<td class="text-center">{{ $row->created_at }}</td>
<td class="text-center">{{ $row->updated_at }}</td>
<td class="text-right">
<a href="{{ route('roles.edit', $row->id) }}" class="btn btn-warning btn-sm">
<i class="fas fa-edit" aria-hidden></i>
</a>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection