Added custom.css to app.blade

This commit is contained in:
Deon George 2019-10-30 14:31:32 +08:00
parent b0730b9ed3
commit 1096f0e28d
2 changed files with 6 additions and 7 deletions

View File

@ -14,12 +14,6 @@
"creativeorange/gravatar": "^1.0",
"orchestra/asset": "^4.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/leenooks/laravel-theme"
}
],
"require-dev": {
},
"autoload": {

View File

@ -39,7 +39,12 @@
<link rel="stylesheet" href="{{ asset('/css/adminlte.min.css') }}">
@if(file_exists('css/fixes.css'))
<!-- CSS Fixes -->
<!-- CSS Fixes -->
<link rel="stylesheet" href="{{ asset('/css/fixes.css') }}">
@endif
@if(file_exists('css/fixes.css'))
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ asset('/css/custom.css') }}">
@endif
</head>