Top "Laravel-4" questions

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

Carbon - get first day of month

I am using carbon but trying to get the first day of the month so I can run a report …

php datetime laravel-4 php-carbon
Laravel Eloquent how to use between operator

I am trying to find an elegant way in Eloquent and Laravel to say select * from UserTable where Age between …

php sql laravel laravel-4 eloquent
Check if request is GET or POST

In my controller/action: if(!empty($_POST)) { if(Auth::attempt(Input::get('data'))) { return Redirect::intended(); } else { Session::flash('error_…

php post get laravel-4
How to send data using redirect with Laravel

I developed an API to show a pop up message when the page loaded. Not all the pages use the …

php laravel laravel-4 blade
How to set a default attribute value for a Laravel / Eloquent model?

If I try declaring a property, like this: public $quantity = 9; ...it doesn't work, because it is not considered an "attribute", …

php model laravel laravel-4 eloquent
Laravel daily log created with wrong permissions

I have a script that I run using php artisan (with root user), and sometimes it causes the daily log …

laravel-4 file-permissions
How to install Laravel via Laravel Installer on Windows?

I’m trying to install the Laravel Framework on Windows with the Laravel Installer method. In the documentation I found …

laravel laravel-4 installation composer-php
Laravel mail: pass string instead of view

I want to send a confirmation e-mail using laravel. The laravel Mail::send() function only seems to accept a path …

php email laravel laravel-4 swiftmailer
How to get all rows (soft deleted too) from a table in Laravel?

To get all rows from a table, I have to use Model::all() but (from good reason) this doesn't gives …

php laravel laravel-4 eloquent
Access query string values from Laravel

Does anyone know if it's possible to make use of URL query's within Laravel. Example I have the following route: …

php laravel laravel-4 query-string laravel-routing