Error with Font Awesome in Laravel

2

I'm making a website with Laravel .

But when I add the icon library Font-Awesome , the iconos do not come out and I get this error in console:

What can be the error?

The css and the fonts are inside the folder public

The flames at css I do it like this:

<link rel="stylesheet" href="http://localhost/admin/public/css/font-awesome.min.css">
    
asked by 08.11.2016 в 18:42
source

1 answer

0

In theory you should call the static resources by means of one of the laravel helpers, to do this task of determining the easiest route:

Example:

<link rel="stylesheet" href="{{ asset('css/font-awesome.min.css') }}">
    
answered by 08.11.2016 / 18:53
source