Create action
概述
Filament 包含一个可以创建 Eloquent 记录的预制 Action。点击触发按钮后,会打开一个带有表单的模态框。用户填写表单,数据经验证后存入到数据库。你可以这样使用:
use Filament\Actions\CreateAction;
use Filament\Forms\Components\TextInput;
CreateAction::make()
->model(Post::class)
->form([
TextInput::make('title')
->required()
->maxLength(255),
// ...
])
如果你想将该 Action 添加到表格的头部,你可以使用 Filament\Tables\Actions\CreateAction
:
use Filament\Forms\Components\TextInput;
use Filament\Tables\Actions\CreateAction;
use Filament\Tables\Table;
public function table(Table $table): Table
{
return $table
->headerActions([
CreateAction::make()
->form([
TextInput::make('title')
->required()
->maxLength(255),
// ...
]),
]);
}
保持前自定义数据
有时候,你需要在表单数据存入到数据库前对其进行修改。为此,你可以使用 mutateFormDataUsing()
方法,该方法能够以数组的方式访问 $data
并返回修改后的版本:
CreateAction::make()
->mutateFormDataUsing(function (array $data): array {
$data['user_id'] = auth()->id();
return $data;
})
自定义创建过程
你可以使用 using()
方法微调记录的创建方式:
use Illuminate\Database\Eloquent\Model;
CreateAction::make()
->using(function (array $data, string $model): Model {
return $model::create($data);
})
$model
是模型类名,不过如果需要你可以使用硬编码类替换。
创建后重定向
使用 successRedirectUrl()
方法中,你可以对表单提交后的重定向进行自定义设置:
CreateAction::make()
->successRedirectUrl(route('posts.list'))
如果你想要使用创建后的记录进行重定向,请使用 $record
参数:
use Illuminate\Database\Eloquent\Model;
CreateAction::make()
->successRedirectUrl(fn (Model $record): string => route('posts.edit', [
'post' => $record,
]))