diff --git a/src/Http/Controllers/ExternalIframeController.php b/src/Http/Controllers/ExternalIframeController.php index 334e7c7..3473cda 100644 --- a/src/Http/Controllers/ExternalIframeController.php +++ b/src/Http/Controllers/ExternalIframeController.php @@ -11,7 +11,7 @@ public function __invoke(Request $request) if ($request->has(str_replace(['?', '='], '', config('iframes.external_link_key')))) { $iframeSource = $request->{str_replace(['?', '='], '', config('iframes.external_link_key'))}; - return view('laravel-iframes::'.config('iframes.theme').'.external-iframe', ['iframeSource' => $iframeSource]); + return view('iframes::'.config('iframes.theme').'.external-iframe', ['iframeSource' => $iframeSource]); } abort('404'); }