@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Lista de Permissões') {{-- vendor style --}} @section('vendor-styles') @endsection {{-- page style --}} @section('page-styles') @endsection @section('content')
Criar Permissão
@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Ops! Ouve algum problema.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($permissions as $item) @endforeach
ID Nome Descrição Editar
{{ $item->id }} {{ $item->name }} {{ $item->description }}
@csrf @method('DELETE')
@endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection