@extends('layouts.list') @section('title') Search Users @endsection @section('list-title') Users @endsection @section('list-navigation')
  • List Users
  • Search Users
  • @endsection @section('list-new-button') New User @endsection @section('list-table-header') # Image User Nationality Gender Allow Login Is Active Business Location Actions @endsection @section('list-table-body') @foreach ($users as $user)

    1

    @if ($user->image !== null) {{ $user->full_name }} @else No User Image @endif

    {{ $user->user_name }}

    {{ $user->email }}

    {{ $user->phone }}

    {{ $user->nationality }}

    {{ $user->gender }}

    @if ($user->allow_login == 1)

    Allowable

    @else

    NotAllowable

    @endif @if ($user->is_active == 1)

    Active

    @else

    InActive

    @endif

    {{ $user->business_location->business_name }}

    @endforeach @endsection @section('list-table-inside-pagination') {{--
    {!! $users->links() !!}
    --}} @endsection @section('list-pagination') {{-- {{ $users->links() }} --}} @endsection