skip to Main Content

laravel and apache mod_status

I have enabled Apache mod_status on my server: OS: centos 6 Server version: Apache/2.2.15 (Unix) php version 7.1 I get a 404 error page for example.com/server-status as i dont know how can i serv this route, with laravel(5.2) route api…

VIEW QUESTION

Laravel symlink and cPanel

On my Laravel website I'm using symlink to store and show the images from storage. With php artisan storage:link I had created the symlink and everytime when I upload a new news article, the image is uploaded in the main…

VIEW QUESTION

Laravel send query string with optional parameters – SEO

I have my route set as Route::any('/{brand?}/{type?}/{city?}', 'SearchController@index')->name('search'); I want to send from my controller query strings (Form GET params) After searching I ended up with this but it does not work properly return redirect()->route('search', [$brand->name, $type->name, 'search_model_from' => $request->search_model_from,…

VIEW QUESTION
Back To Top
Search