@extends('layouts.app') @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif
{{--
With DataTables you can alter the ordering characteristics of the table at initialisation time.
--}}
@foreach ($roles as $key => $role) @endforeach
# სახელი ქმედება
{{ $key+1 }} {{ $role->name }} @can('role-edit') {{-- Edit--}} @endcan @can('role-delete') @endcan
{!! $roles->render() !!} {{-- {!! $data->render() !!}--}}
@endsection