mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
7f9abbf96b
- New dropdown in navigation bar - New switch_company route - New $multiple_contacts variable in PortalComposer
35 lines
806 B
PHP
35 lines
806 B
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Controllers\ClientPortal;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\ClientContact;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
class SwitchCompanyController extends Controller
|
|
{
|
|
use MakesHash;
|
|
|
|
public function __invoke(string $contact)
|
|
{
|
|
$client_contact = ClientContact::query()
|
|
->where('user_id', auth()->user()->id)
|
|
->where('id', $this->transformKeys($contact))
|
|
->first();
|
|
|
|
auth('contact')->login($client_contact, true);
|
|
|
|
return back();
|
|
}
|
|
}
|