@extends('layouts.app') @section('title', __('Master Dashboard')) @section('content')
@include('layouts.master-left-menu')
@include('masters.agent-menu')
@if (count($agents)>0) @foreach ($agents as $key=>$agent) @endforeach @else @endif
# @lang('Agent Number') @lang('Name') @lang('Email') @lang('Phone') @lang('Country') @lang('Status') @lang('Actions')
{{ $key + 1 }} {{ $agent->student_code }} {{ $agent->name }} {{ $agent->email }} {{ $agent->phone_number }} {{ $agent->nationality }} role == 'master') onclick="activeInactiveUser({{$agent->id.','.$agent->active}})" @endif> {!! $agent->active == 1 ? 'Active' : ($agent->active == 2 ? ' Pending':' Inactive') !!} @lang(' Edit ')
  @lang('No Related Data Found.')  
@push('script') @endpush @endsection