// Depending on what you want to achieve read below.
--
// This is how laravel asset reference works
asset() = "public/..."
// So the below example explains this
/* Implementation */ {{ asset('js/jquery.min.js') }}
/* Output */ "public/js/jquery.min.js"
--
// This is how you can adjust the default asset path in Laravel
// Step 1 : Inside your .env file add this
ASSET_URL="custom/path/to/my/stuff/"
// Step 2 : Now with the above implemented when you use asset()
/* Implementation */ {{ asset('js/jquery.min.js') }}
/* Output */ "custom/path/to/my/stuff/public/js/jquery.min.js"
{{ asset('js/jquery.min.js') }}
{{ asset('css/bootstrap.css') }}
//Full Path http://127.0.0.1:8000/js/jquery.min.js
Do Not Add Public folder name
Code Example |
---|
Php :: php time to date |
Php :: check method in laravel |
Php :: how to stop laravel server |
Php :: calculate days of a month |
Php :: php get file location |
Php :: php query pdo |
Php :: php read text file into array |
Php :: laravel collection map |
Php :: laravel wherein example |
Php :: get day from date php |
Php :: laravel eloquent search json column |
Php :: round to 2 decimal places php |
Php :: unique check with multiple columns laravel validation |
Php :: laravel is route name |
Php :: php realpath |
Php :: php html to text |
Php :: name of today php |
Php :: instal phpgd2 |
Php :: Date Format Conversion in controller or Blade file |
Php :: New Laravel Devcontainer Project Setup |
Php :: function () ?type{} in php |
Php :: remove gutenberg cpt |
Php :: php is_int |
Php :: str_shuffle in php |
Php :: laravel migration delete column |
Php :: array intersect |
Php :: hide add new link on cpt page |
Php :: laravel wheredate |
Php :: php array order alphabetically |
Php :: new DateInterval 1 hour |