fanatic/app/helpers.php
2022-04-26 20:35:32 -07:00

16 lines
344 B
PHP

<?php
define('PER_PAGE', 7);
/* ------------------------------------------------------------------------- auth_collective ---- */
// returns the currently authenticated collective
use App\Models\Collective;
if (!function_exists('auth_collective')) {
function auth_collective() : Collective
{
return auth()->user();
}
}