Additional CSS And JS (Theming)

Learn how to add your own CSS or JS file in Laravel Admin Panel

The CSS and JS files are added after any Laravel Admin Panel assets so you can override styles and functionality comfortably.

All this is processed through the configuration admin.php

   // Here you can specify additional assets that you would like to include in the master.blade
    'additional_css' => [
        //'css/custom.css',
    ],

    'additional_js' => [
        //'js/custom.js',
    ],