21 lines
700 B
PHP
21 lines
700 B
PHP
@push('styles')
|
|
<!-- Toastr -->
|
|
<style>
|
|
@media only screen and (max-width : 991px) {
|
|
/* Styles */
|
|
}
|
|
|
|
@media only screen and (max-width : 768px) {
|
|
/* Styles */
|
|
}
|
|
|
|
@media only screen and (max-width : 414px) {
|
|
/* Styles */
|
|
}
|
|
</style>
|
|
<link rel="stylesheet" href="{{ asset('assets/plugins/toastr/toastr.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/datatables/datatables.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/plugins/sweetalert2/sweetalert2.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('assets/plugins/select2/css/select2.min.css') }}">
|
|
@endpush
|