@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'ROLES') @section('content_header_title', 'ROLES') @section('content_header_subtitle', 'LIST') {{-- Content body: main page content --}} @section('content_body') @can('role create')
NEW
@endcan

ROLES LIST

{{html()->form('GET', route('role.index'))->open()}}
{{html()->text('search')->value($search)->class('form-control')->placeholder('Search')}}
{{html()->form()->close()}}
@foreach($roles as $role) @endforeach
NAME ACTIONS
{{$role->name}} @can('role edit') @endcan @can('role delete') @endcan
@stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush