Laravel 4.2 is the previous version of the open-source PHP web development MVC framework created by Taylor Otwell.
When I try to send an e-mail through my website running Laravel 4, I get this exception: Expected response code 250 but …
laravel-4 smtp gmail swiftmailerI've been searching around and the question was asked a few times, but no-one seem to be able to give …
laravel-4 database-schemaI have the following relations set up: class Page { public function comments() { return $this->hasMany('Comment'); } } class Comment { public …
laravel laravel-4 eloquent relationshipI have one more field on the database over the created_at and updated_at as TIMESTAMP the field name …
php laravel-4 eloquent php-carbon{{ Form::text('username', Input::old('username')) }} This is my code, I want to add Username as placeholder in the text …
laravel laravel-4 placeholderI tried to google it but did not find detailed information. Service providers are a great way to group related …
laravel laravel-4 service-providerHow can I autoload Guzzle in Laravel 4? I am encountering the following error when I try to create a new …
php laravel laravel-4 composer-php guzzle