@extends('adminlte::page')
@section('title', 'Permissions')
@section('content_header')
Permissions
@stop
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
Add Permission
| # |
Permission Name |
Actions |
@foreach($permissions as $permission)
| {{ $loop->iteration }} |
{{ $permission->name }} |
Edit
|
@endforeach
@stop