@extends('layouts.master') @section('title',' User') @section('css') @stop @section('content') @include('partials._alert_message')
@foreach($users as $key => $user) @endforeach
SL Name Email
{{ $key+1 }} {{ $user->name }} {{ $user->email }}
@if (hasPermission("users.edit", $slugs)) @endif @if (hasPermission("users.delete", $slugs)) @endif
@endsection @section('js') @stop