MyApp - group doc app
This project incomplete. Please help.
for more info, pleace visit homepage.
<?php
Route::get('/', function()
{
return "Hello World!";
});<?php
Route::get('user/(:num)', function($id)
{
$user = DB::table('users')->find($id);
return View::make('profile')->with('user', $user);
});<?php
return Redirect::to('profile')->with('message', 'Welcome Back!');Contributions are encouraged and welcome; however, please review the Developer
Certificate of Origin in the "license.txt" file included in the repository. All
commits must be signed off using the -s switch.
git commit -s -m "this commit will be signed off automatically!"is open-sourced software licensed under the MIT License.