Section::make()
->schema([
Actions::make([
Action::make('saveAndCreateAnother')
->label('Save & Create Another')
->button()
,
Action::make('saveAndClose')
->label('Save & Close')
->button(),
Action::make('cancel')
->label('Cancel')
->button(),
Action::make('viewFrontend')
->label('View on site')
->icon('heroicon-o-eye')
->button()
->url(fn($get
) => route('hobby',
$get('slug')))
->openUrlInNewTab(),
]),
Section::make()
->schema([
Actions::make([
Action::make('saveAndCreateAnother')
->label('Save & Create Another')
->button()
,
Action::make('saveAndClose')
->label('Save & Close')
->button(),
Action::make('cancel')
->label('Cancel')
->button(),
Action::make('viewFrontend')
->label('View on site')
->icon('heroicon-o-eye')
->button()
->url(fn($get
) => route('hobby',
$get('slug')))
->openUrlInNewTab(),
]),