@extends('admin.layout') @section('title',__('Roles')) @section('css') @endsection @section('breadcrump')

{{ __('Roles') }}

@endsection @section('content')

{{ __('Roles table') }}

{{__('Create')}}
@foreach($roles as $role) @endforeach
# {{ __('Name') }} {{ __('Action') }}
{{$role->id}} {{$role->name}}
@csrf @method('delete')
@endsection @section('scripts') @include('admin.pages.roles.scripts') @endsection