@extends('admin.layout.app') @section('title','Roles') @section('header')

Home - Role Managment

@can('roles-create')
@endcan
@endsection @section('content')
Role
@foreach ($roles as $key => $role) @endforeach
No Name Guard Created At Updated At Actions
{{ ++$key }} {{ $role->name }} {{ ucfirst($role->guard_name) }} {{ $role->created_at }} {{ $role->updated_at }} @include('admin.roles.actions')
{{ $roles->appends(request()->query())->links('vendor.pagination.bordered-rounded') }}
@endsection @section('script') @endsection