Generare un collegamento a un file CSS

Generare un collegamento a un file CSS

Problema

Vuoi aggiungere un link a un file CSS nel modello di lama.

Soluzione

Usa il Html :: style () metodo.

Puoi semplicemente passare il percorso al foglio di stile.

Html :: style ('css/style.css ')

Questo aggiungerà il seguente HTML.

href = "http: // tuo.URL/CSS/stile.CSS ">

Se il percorso del file che passa non è un URL completo, Laravel utilizzerà l'URL della tua applicazione per creare un URL completo.

È possibile superare attributi aggiuntivi in ​​un array come secondo argomento. Ciò consente anche di sovrascrivere gli attributi predefiniti

Html :: style ('css/style.css ', array (' media '=>' print ')

Ora i media sono "stampati" invece di "All" predefinito.

href = "http: // tuo.URL/CSS/stile.CSS ">