app->bind(Dompdf::class, function() { return new Dompdf(); }); $this->app->bind(Pdf::class, function() { return new MyDompdf(new Dompdf()); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return [ Pdf::class, ]; } }