@extends('adminlte::page')
@section('title', 'Roles')
@section('content_header')
TABELAS
@stop
@section('content')
| ID |
Nome |
Descrição |
|
@forelse($tabelas as $tabela)
| {{$tabela->id}} |
{{$tabela->name}} |
{{$tabela->description}} |
Editar
Excluir
|
@empty
| ainda não há permissões cadastradas |
|
Cadastrar
|
@endforelse
| ID |
Nome |
Descrição |
|
{{$tabelas->links() }}
@stop