Laravel Filament: 프로덕션 환경에서 403 오류를 수정하는 방법
3815 단어 todayilearnedfilamentlaraveltall
그리고
그런 다음 프로덕션 서버에 푸시합니다. 403 페이지 쇼 😄
나는 그것에 대해 전혀 모르고 Google을 검색합니다. 그래서 우리는 v2 문서에 언급되지 않은 한 단계를 놓치고 있습니다.
따라서
Filament\Models\Contracts\FilamentUser
모델에 구현app/Models/User.php
이 필요하고 메서드canAccessFilament
를 추가해야 합니다.<?php
namespace App\Models;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
use Filament\Models\Contracts\FilamentUser;
class User extends Authenticatable implements FilamentUser
{
use HasApiTokens, HasFactory, Notifiable;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
'email',
'password',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
*/
protected $hidden = [
'password',
'remember_token',
];
/**
* The attributes that should be cast.
*
* @var array<string, string>
*/
protected $casts = [
'email_verified_at' => 'datetime',
];
public function canAccessFilament(): bool
{
return str_ends_with($this->email, '@xxx.com');
}
}
Reference
이 문제에 관하여(Laravel Filament: 프로덕션 환경에서 403 오류를 수정하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/trungpv1601/laravel-filament-how-to-fix-403-error-on-production-environment-aj5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)