@extends('Admin.layouts.App') @section('content')

Users

Users Table

@if(\Session::has('success'))

{{\Session::get('success')}}

@endif @if(\Session::has('Delete'))

{{\Session::get('Delete')}}

@endif @if($user->count() > 0) @foreach($user as $row) @endforeach @else @endif
Id Name Phone no Is Block Action
1 {{$row->name}} {{$row->phone}} {{$row->is_block}} Edit @if($row->is_block == 'Active') Block User @elseif($row->is_block == 'Block') Unblock User @endif Details Delete
No data found
@endsection