You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
317B

  1. <?php
  2. namespace App\Http\Controllers\Web\Auth;
  3. use App\Exceptions\AppCommonException;
  4. use Illuminate\Support\Facades\Auth;
  5. trait Me
  6. {
  7. public function me(): array
  8. {
  9. if (!Auth::check()) {
  10. throw new AppCommonException("Me失敗");
  11. }
  12. return Auth::user()->toArray();
  13. }
  14. }