Adding External Resources
Sometimes you will want to add external resources to your site, such as a custom css file(s) or javascript files. It's actually really easy.
Make sure all your external files reside in the public > custom folder
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href="{{ asset('custom/css/main.css') }}"> </head> ...
The same procedure applies for javascript too. Should you wish to install tailwind, please refer to the Laravel docs on how to use and compile tailwind.