Level 18
remove public from your asset path and check
<link href="{{ asset('css/font-awesome.min.css')}}" rel="stylesheet" type="text/css" />
Hey guys,here is my code, can you all guide me what i'm do wrong?
<head>
<meta charset="UTF-8">
<meta name="_token" content="{!! csrf_token() !!}"/>
<title>{{ trans('admin.admin') }}</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.5 -->
<link href="{{ asset('public/bootstrap/css/bootstrap.min.css')}}" rel="stylesheet" type="text/css" />
<!-- Font Awesome Icons -->
<link href="{{ asset('public/css/font-awesome.min.css')}}" rel="stylesheet" type="text/css" />
<!-- Ionicons -->
<link href="{{ asset('public/fonts/ionicons/css/ionicons.min.css')}}" rel="stylesheet" type="text/css" />
<!-- App css -->
<link href="{{ asset('public/admin/css/app.css')}}" rel="stylesheet" type="text/css" />
<!-- IcoMoon CSS -->
<link href="{{ asset('public/css/icomoon.css') }}" rel="stylesheet"/>
<!-- Theme style -->
<link href="{{ asset('public/admin/css/AdminLTE.min.css')}}" rel="stylesheet" type="text/css" />
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link href="{{ asset('public/admin/css/skins/skin-red.min.css')}}" rel="stylesheet" type="text/css" />
<link rel="shortcut icon" href="{{ URL::asset('public/img/favicon.png') }}" />
<link href='https://fonts.googleapis.com/css?family=Montserrat:700' rel='stylesheet' type='text/css'>
<link href="{{ asset('public/plugins/sweetalert/sweetalert.css')}}" rel="stylesheet" type="text/css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
@yield('css')
<script type="text/javascript">
// URL BASE
var URL_BASE = "{{ url('/') }}";
</script>
</head>
Please or to participate in this conversation.