model(CourseSchedule::class) ->label('Tambah') ->modalHeading('Tambah Jadwal Kuliah') ->modalSubmitActionLabel('Simpan') ->modalCancelActionLabel('Batal') ->extraModalFooterActions(fn (CreateAction $action): array => [ $action->makeModalSubmitAction('createAnother', arguments: ['another' => true]) ->label('Simpan dan Tambah Lagi'), ]) ->modalWidth(Width::ThreeExtraLarge) ->schema(fn ($livewire) => $livewire->scheduleFormSchema()); } }