@extends('backend.layouts.app')
@section('content')
# |
School Name |
Action |
@if($roles->isNotEmpty())
@foreach($roles as $key => $role)
@if($role->user_type == 'admin')
@continue
@endif
{{ ($key+1) + ($roles->currentPage() - 1)*$roles->perPage() }} |
{{ $role->name }} |
|
@endforeach
@endif
@endsection
@section('modal')
@include('backend.modals.delete')
@endsection