Filipe Cruz
Filipe Cruz

Reputation: 91

Laravel, icon and name tab php, html

I am doing a laravel project using adminlte, is there a way to use this:

<title>Domínios - Iniciar Sessão</title> <link rel="icon" href="../domain.png">

globally, so I don´t have to put it in everypage?

The name and the icon of tab.

Upvotes: 0

Views: 688

Answers (1)

msmahon
msmahon

Reputation: 434

Create a global layout that wraps all your views and includes this line. I suggest reading laravel's blade template page. This is a common problem that this feature is made for.

https://laravel.com/docs/9.x/blade#extending-a-layout

Upvotes: 1

Related Questions