diff --git a/app/Actions/Print/PrintCards.php b/app/Actions/Print/PrintCards.php new file mode 100644 index 0000000..521eceb --- /dev/null +++ b/app/Actions/Print/PrintCards.php @@ -0,0 +1,10 @@ +app->singleton(PrintCards::class, QuarterPageCards::class); + } + + /** + * Bootstrap services. + */ + public function boot(): void + { + // + } +} diff --git a/bootstrap/providers.php b/bootstrap/providers.php index 6b20b30..eeeccb0 100644 --- a/bootstrap/providers.php +++ b/bootstrap/providers.php @@ -4,5 +4,6 @@ return [ App\Providers\AppServiceProvider::class, App\Providers\FortifyServiceProvider::class, App\Providers\InvoiceDataServiceProvider::class, + App\Providers\PrintCardActionProvider::class, Barryvdh\Debugbar\ServiceProvider::class, ];