Forms\Components\FileUpload::make('image')
->disk('public')
->directory('posts/featured-images')
->hintAction(
Action::make('custom_action')
->action(function () {
// get the disk and directory from the field
})
),
Forms\Components\FileUpload::make('image')
->disk('public')
->directory('posts/featured-images')
->hintAction(
Action::make('custom_action')
->action(function () {
// get the disk and directory from the field
})
),