Github What is reCAPTCHA? reCAPTCHA is a free service to protect your website from spam and abuse....
I want to change the view path (view.paths) based on a set variable. I've tried with App::before(fun...
Carbon is included with Laravel 4.1, but to use it you need to have use Carbon\Carbon at the top of...
Use DB::raw(...). In your case: public static create($data) { $data['b'] = DB::raw('now()'); par...
This will (hopefully) work for you (not sure about namespacing as name tho). <?php // class.php n...
This is how I would have done it. <?php Route::get('shorten/create', [ 'as' => 'createUrl',...
Put them anywhere you want. I would suggest you put them in app/helpers.php and then require that fi...
The Laravel portal for problem solving, knowledge sharing and community building.