Skip to content

rgrigga/dev

Repository files navigation

MyApp - group doc app

This project incomplete. Please help.

for more info, pleace visit homepage.

Feature Overview

A Few Examples

Hello World:

<?php

Route::get('/', function()
{
	return "Hello World!";
});

Passing Data To Views:

<?php

Route::get('user/(:num)', function($id)
{
	$user = DB::table('users')->find($id);

	return View::make('profile')->with('user', $user);
});

Redirecting & Flashing Data To The Session:

<?php

return Redirect::to('profile')->with('message', 'Welcome Back!');

Contributing to Laravel

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!"

License

is open-sourced software licensed under the MIT License.

About

No description, website, or topics provided.

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published