Compare commits

...

5 Commits
6.0.0 ... 6.0.5

Author SHA1 Message Date
Deon George
1096f0e28d Added custom.css to app.blade 2019-10-30 14:31:32 +08:00
Deon George
b0730b9ed3 Revert name to igaster/laravel-theme 2019-10-30 14:15:20 +08:00
Deon George
163a7f2587 Add github cvs to composer 2019-10-30 12:15:23 +08:00
Deon George
4f2707a374 Switch laravel-them to fix issue with @ directives 2019-10-30 09:49:19 +08:00
Deon George
0ca66c6d1c Updated orchestra/asset 2019-10-11 15:50:06 +11:00
2 changed files with 8 additions and 3 deletions

View File

@@ -10,9 +10,9 @@
} }
], ],
"require": { "require": {
"igaster/laravel-theme": "^2.0.12", "igaster/laravel-theme": "^2.0.15",
"creativeorange/gravatar": "^1.0", "creativeorange/gravatar": "^1.0",
"orchestra/asset": "^3.6" "orchestra/asset": "^4.0"
}, },
"require-dev": { "require-dev": {
}, },

View File

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