})); // Show the form for a user to edit their profile Route::get('/me/edit', array('before' => 'auth', function () { return View::make('editUser')->with('user', Auth::user()); })); // Handle the form for a user to edit their information Route::post('/me/edit', 'UserController@updateUser'); /* Board functions */ Route::group(array('before' => 'auth'), function () { Route::post('boards/{id}', 'BoardController@reply'); Route::resource('boards', 'BoardController'); Route::post('/community/chats/{id}', 'ChatController@reply'); Route::resource('chats', 'ChatController'); }); Route::get('/test', function () { var_dump(Board::findOrFail(1)->message()->get()->last()); }); }); Route::get('/seeder', function () { $faker = Faker\Factory::create(); $user = new User(); $user->ip = "94.198.135.79"; $user->name = $faker->name; $user->password = Hash::make('test'); $user->save(); $user = new User(); $user->ip = "94.228.204.10"; $user->name = $faker->name; $user->password = Hash::make('test'); $user->save(); $user = new User();
/** * Display the specified resource. * * @param int $id * @return Response */ public function show($id) { return View::make('readOneBoard')->with('board', Board::findOrFail($id)); }