File: database/migrations/2014_10_12_000000_create_users_table.php
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->string('avatar');
$table->boolean('active')->default(true);
$table->rememberToken();
$table->timestamps();
$table->softDeletes();
File: app/User.php
File: routes/web.php
// Contacts
Route::get('/contacts', 'ContactsController@index');
Route::get('/contacts/all', 'ContactsController@all');
File: app/Http/Controllers/ContactsController.php
File: resources/views/contacts.blade.php
Folder: resources/assets/js/components/contacts