14 lines
No EOL
304 B
PHP
14 lines
No EOL
304 B
PHP
<?php
|
|
|
|
/* ------------------------------------------------------------------------- auth_collective ---- */
|
|
|
|
// returns the currently authenticated collective
|
|
|
|
use App\Models\Collective;
|
|
|
|
if (!function_exists('auth_collective')) {
|
|
function auth_collective() : Collective
|
|
{
|
|
return auth()->user();
|
|
}
|
|
} |