Rubenwouters\CrmLauncher\Controllers\UsersController::index PHP Method

index() public method

Returns team overview
public index ( ) : view
return view
    public function index()
    {
        $team = $this->user->where('canViewCRM', 1)->paginate(7, ['*'], 'team');
        return view('crm-launcher::users.index')->with('team', $team);
    }