mirror of
https://github.com/archtechx/laravel-seo.git
synced 2025-12-12 01:44:03 +00:00
6 lines
238 B
PHP
6 lines
238 B
PHP
@if ($favicon = seo('favicon'))
|
|
<link rel="icon" href="{{ $favicon }}">
|
|
@else
|
|
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
|
|
<link rel="icon" type="image/png" href="{{ asset('favicon.png') }}">
|
|
@endif
|