Skip to content

Commit

Permalink
Update ExternalIframeController.php
Browse files Browse the repository at this point in the history
  • Loading branch information
inmanturbo authored Jun 27, 2021
1 parent 3772552 commit 130b68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/ExternalIframeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
Expand Down

0 comments on commit 130b68e

Please sign in to comment.