@extends('admin.layouts.app') @section('content')

Coach

{{--
Responsive DataTables
Highly flexible tool that many advanced features to any HTML table. See official documentation here.
--}}
@if($users_array->isNotEmpty()) Showing {{ $users_array->firstItem() }} to {{ $users_array->lastItem() }} of total {{$users_array->total()}} application(s) @else Showing 0 to 0 of total 0 application(s) @endif {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @if($users_array->isNotEmpty()) @foreach ($users_array as $user) @if ($user->approved_by != null) { } @else @endif {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} {{-- --}} @endforeach @else @endif
Name Date Of Birth State City Email Status Approved ByActionGenderAgeCountryAddressPincodeMobileProfilesSub ProfilePrimary ProfileRequested At
{{ $user->fname }} {{ $user->lname }} {{ $user->dob }} {{ $user->state_name }} {{ $user->city_name }} {{ $user->email }} @if ($user->approved == 1) Active @elseif($user->approved == -1) Rejected @else Pending @endif {{ $user->approved_by }}-- View{{$user->gender}}{{$user->age}}{{$user->country_id}}{{$user->address}}{{$user->pincode}}{{$user->mobile}}{{$user->profiles}}{{$user->sub_profile}}{{$user->primary_profile}}{{$user->updated_at}}
No data to display
{{ $users_array->links() }}
@endsection