We already know we're importing eggs...

This commit is contained in:
notCharles 2024-04-21 09:52:08 -04:00
parent 8476f89f19
commit db67c64da0

View File

@ -40,7 +40,7 @@ class ListEggs extends ListRecords
$eggImportService->handle($file); $eggImportService->handle($file);
} catch (Exception $exception) { } catch (Exception $exception) {
Notification::make() Notification::make()
->title('Egg Import Failed') ->title('Import Failed')
->danger() ->danger()
->send(); ->send();
@ -51,7 +51,7 @@ class ListEggs extends ListRecords
} }
Notification::make() Notification::make()
->title('Egg Import Success') ->title('Import Success')
->success() ->success()
->send(); ->send();
}), }),