11 lines
185 B
PHP
11 lines
185 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
if (!function_exists('get_layout')) {
|
|
function get_layout()
|
|
{
|
|
return Auth::check() ? 'app-layout' : 'guest-layout';
|
|
}
|
|
}
|