Top "Laravel-5" questions

Laravel 5 is the previous major version of the open-source PHP web development MVC framework created by Taylor Otwell.

Laravel eloquent update record without loading from database

I'm quite new to laravel and I'm trying to update a record from form's input. However I see that to …

php eloquent laravel-5
Laravel 5 not finding css files

I've just installed a Laravel 5 project on MAMP and my pages are not finding the css files. This is the …

php .htaccess laravel laravel-5
How to compare two Carbon Timestamps?

I have two timestamps, edited_at which I created and created_at (Laravel's)... In database, both have type timestamp and …

laravel laravel-5 php-carbon
Reloading .env variables without restarting server (Laravel 5, shared hosting)

My Laravel 5 has run OK until the database was configured, then found this error: SQLSTATE[HY000] [2002] php_network_getaddresses: getaddrinfo …

php mysql laravel laravel-5 dreamhost
How to redirect back to form with input - Laravel 5

How do I redirect back to my form page, with the given POST params, if my form action throws an …

php forms laravel redirect laravel-5
How to access URL segment(s) in blade in Laravel 5?

I have a url : http://localhost:8888/projects/oop/2 I want to access the first segment --> projects I've tried &…

php laravel laravel-5 blade
Can I do Model->where('id', ARRAY) multiple where conditions?

The title says it all. I get that I can do this : DB::table('items')->where('something', 'value')…

php laravel laravel-4 laravel-5 where
Switch in Laravel 5 - Blade

How can I use switch in blade templates? When I used: @switch($login_error) @case(1) `E-mail` input is empty! @break @…

php laravel switch-statement laravel-5 blade
Where are logs located?

I'm debugging a JSON endpoint and need to view internal server errors. However, my app/storage/logs dir is empty …

laravel logging laravel-5 laravel-5.2
How to pass data to all views in Laravel 5?

I want to have some default data accessible in all views in my Laravel 5 application. I have tried to search …

php laravel laravel-5