Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MohamedLamineAllal/596df7098e9e99d4a364c059b9c082b7 to your computer and use it in GitHub Desktop.
Save MohamedLamineAllal/596df7098e9e99d4a364c059b9c082b7 to your computer and use it in GitHub Desktop.
Laravel Serve javascript files through a route
<?php
Route::group(['prefix' => 'js'], function () {
Route::get('filterizr', function () {
return response()->file(base_path('node_modules/filterizr/dist/jquery.filterizr.min.js'), [
'Content-Type' => 'application/javascript'
]);
})->name('js.filterizr');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment