mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-02 03:16:27 -04:00
17 lines
257 B
PHP
17 lines
257 B
PHP
<?php
|
|
|
|
namespace Modules\Theme\Services;
|
|
|
|
use App\Models\User;
|
|
|
|
class App
|
|
{
|
|
public static function auth()
|
|
{
|
|
return User::query()
|
|
->with(['role.permissions'])
|
|
->where('id', auth()->id())
|
|
->first();
|
|
}
|
|
}
|