Hiển thị các bài đăng có nhãn Lumen. Hiển thị tất cả bài đăng
Hiển thị các bài đăng có nhãn Lumen. Hiển thị tất cả bài đăng

Thứ Bảy, 17 tháng 12, 2016

Lumen API Tutorial : Lumen 5.3 HTTP Routing Methods with Laravel 5.3 Components


Lumen API Tutorial for beginners : this lessons will show you How to use Lumen 5.3 HTTP Routing Methods with Laravel 5.3 Components, at the previews lessons, we have learn about installing Lumen 5.3 using composer, so please read :

How to Install Lumen 5.3 using Composer

Video Tutorial Lumen 5.3 HTTP Routing Methods



Basic Routing

You will define all of the routes for your application in the routes/web.php file. The most basic Lumen routes simply accept a URI and a Closure:

$app->get('foo', function () {
    return 'Hello World';
});

$app->post('foo', function () {
    //
});

Available Router Methods

The router allows you to register routes that respond to any HTTP verb :
$app->get($uri, $callback);
$app->post($uri, $callback);
$app->put($uri, $callback);
$app->patch($uri, $callback);
$app->delete($uri, $callback);
$app->options($uri, $callback);

Route Parameters

Required Parameters

Of course, sometimes you will need to capture segments of the URI within your route. For example, you may need to capture a user's ID from the URL. You may do so by defining route parameters:

$app->get('user/{id}', function ($id) {
    return 'User '.$id;
});

You may define as many route parameters as required by your route:

$app->get('posts/{post}/comments/{comment}', function ($postId, $commentId) {
    //
});

Route Groups

Route groups allow you to share route attributes, such as middleware or namespaces, across a large number of routes without needing to define those attributes on each individual route. Shared attributes are specified in an array format as the first parameter to the $app->group method.

To learn more about route groups, we'll walk through several common use-cases for the feature.

Middleware

To assign middleware to all routes within a group, you may use the middleware key in the group attribute array. Middleware will be executed in the order you define this array:

$app->group(['middleware' => 'auth'], function () use ($app) {
    $app->get('/', function ()    {
        // Uses Auth Middleware
    });

    $app->get('user/profile', function () {
        // Uses Auth Middleware
    });
});

For more detail about Routing in Lumen 5.3 go to Lumen documents https://lumen.laravel.com/docs/5.3/routing

More Lumen 5.3 Video's Tutorial



See you next lessons ....

Lumen API Tutorial : Lumen 5.3 HTTP Routing Methods with Laravel 5.3 Components


Lumen API Tutorial for beginners : this lessons will show you How to use Lumen 5.3 HTTP Routing Methods with Laravel 5.3 Components, at the previews lessons, we have learn about installing Lumen 5.3 using composer, so please read :

How to Install Lumen 5.3 using Composer

Video Tutorial Lumen 5.3 HTTP Routing Methods



Basic Routing

You will define all of the routes for your application in the routes/web.php file. The most basic Lumen routes simply accept a URI and a Closure:

$app->get('foo', function () {
    return 'Hello World';
});

$app->post('foo', function () {
    //
});

Available Router Methods

The router allows you to register routes that respond to any HTTP verb :
$app->get($uri, $callback);
$app->post($uri, $callback);
$app->put($uri, $callback);
$app->patch($uri, $callback);
$app->delete($uri, $callback);
$app->options($uri, $callback);

Route Parameters

Required Parameters

Of course, sometimes you will need to capture segments of the URI within your route. For example, you may need to capture a user's ID from the URL. You may do so by defining route parameters:

$app->get('user/{id}', function ($id) {
    return 'User '.$id;
});

You may define as many route parameters as required by your route:

$app->get('posts/{post}/comments/{comment}', function ($postId, $commentId) {
    //
});

Route Groups

Route groups allow you to share route attributes, such as middleware or namespaces, across a large number of routes without needing to define those attributes on each individual route. Shared attributes are specified in an array format as the first parameter to the $app->group method.

To learn more about route groups, we'll walk through several common use-cases for the feature.

Middleware

To assign middleware to all routes within a group, you may use the middleware key in the group attribute array. Middleware will be executed in the order you define this array:

$app->group(['middleware' => 'auth'], function () use ($app) {
    $app->get('/', function ()    {
        // Uses Auth Middleware
    });

    $app->get('user/profile', function () {
        // Uses Auth Middleware
    });
});

For more detail about Routing in Lumen 5.3 go to Lumen documents https://lumen.laravel.com/docs/5.3/routing

More Lumen 5.3 Video's Tutorial



See you next lessons ....

Thứ Sáu, 16 tháng 12, 2016

Lumen API Tutorial : How to Installing Lumen 5.3 Laravel 5.3 Components Using Composer


Lumen 5.3 API Tutorial for beginners - This lesson will show you how to install Lumen 5.3 with Laravel 5.3 Components using composer in windows, at the previews lessons we have learn about install Laravel 5.3 using composer, please read :

Install Laravel 5.4 using Composer

Video Tutorial How to Install Lumen 5.3



The Lumen framework has a few system requirements. Of course, all of these requirements are satisfied by the Laravel Homestead virtual machine, so it's highly recommended that you use Homestead as your local Lumen development environment.

However, if you are not using Homestead, you will need to make sure your server meets the following requirements:
  1. PHP >= 5.6.4
  2. OpenSSL PHP Extension
  3. PDO PHP Extension
  4. Mbstring PHP Extension
More detail go to Lumen Doc

Configuration

All of the configuration options for the Lumen framework are stored in the .env file. Once Lumen is installed, you should also configure your local environment.

Application Key

The next thing you should do after installing Lumen is set your application key to a random string. Typically, this string should be 32 characters long. The key can be set in the .env environment file. If you have not renamed the .env.example file to .env, you should do that now. If the application key is not set, your user encrypted data will not be secure!

More Lumen Video's



See you next lessons ...

Lumen API Tutorial : How to Installing Lumen 5.3 Laravel 5.3 Components Using Composer


Lumen 5.3 API Tutorial for beginners - This lesson will show you how to install Lumen 5.3 with Laravel 5.3 Components using composer in windows, at the previews lessons we have learn about install Laravel 5.3 using composer, please read :

Install Laravel 5.4 using Composer

Video Tutorial How to Install Lumen 5.3



The Lumen framework has a few system requirements. Of course, all of these requirements are satisfied by the Laravel Homestead virtual machine, so it's highly recommended that you use Homestead as your local Lumen development environment.

However, if you are not using Homestead, you will need to make sure your server meets the following requirements:
  1. PHP >= 5.6.4
  2. OpenSSL PHP Extension
  3. PDO PHP Extension
  4. Mbstring PHP Extension
More detail go to Lumen Doc

Configuration

All of the configuration options for the Lumen framework are stored in the .env file. Once Lumen is installed, you should also configure your local environment.

Application Key

The next thing you should do after installing Lumen is set your application key to a random string. Typically, this string should be 32 characters long. The key can be set in the .env environment file. If you have not renamed the .env.example file to .env, you should do that now. If the application key is not set, your user encrypted data will not be secure!

More Lumen Video's



See you next lessons ...