@extends('admin.include.main')
@section('content')
| S.No |
Name |
Email |
Role |
Action |
@foreach($user as $not)
| {{$count++}} |
{{$not->name}} |
{{$not->email}} |
@foreach($role as $rol)
@if($not->role_id == $rol->id)
{{$rol->name}}
|
@endif
@endforeach
|
@endforeach
@endsection