Add users, teams, authentication, profile/login/register/navbar views

This commit is contained in:
Andras Bacsai
2023-03-24 14:54:17 +01:00
parent 436d22e385
commit e47d493776
36 changed files with 1106 additions and 66 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Http\Livewire;
use App\Models\Team;
use Livewire\Component;
class SwitchTeam extends Component
{
public function switch_to($team_id)
{
if (!auth()->user()->teams->contains($team_id)) {
return;
}
$team_to_switch_to = Team::find($team_id);
if (!$team_to_switch_to) {
return;
}
session(['currentTeam' => $team_to_switch_to]);
return redirect(request()->header('Referer'));
}
public function render()
{
return view('livewire.switch-team');
}
}