@extends('layouts.admin.app') @section('content') @if( Session::get('permissions.user_type') == 'A' || Session::get('permissions.user_type') == 'SA' || Session::get('permissions.user_type') == 'M') User Management {{--ADD CMS--}} @foreach (['danger', 'warning', 'success', 'info'] as $msg) @if(Session::has('alert-' . $msg)) {{ Session::get('alert-' . $msg) }} @endif @endforeach User Management @if(count($result) > 0) No. Name Email Site Name Mobile No Created Date {{--Action--}} @php $i=1; @endphp @foreach($result as $key => $data) {{ $i + $key }} {{$data->name}} {{$data->email}} {{strtoupper($data->sitename)}} {{$data->mobile}} {{date('d-m-Y', strtotime($data->created_at))}} {{-- is_block == 'N') checked @endif> --}} @endforeach @else No Data Found... @endif @endif @endsection