sasaya/helloworld

There is no license information available for the latest version (v0.0.3) of this package.

Hello World

v0.0.3 2015-12-04 07:27 UTC

This package is auto-updated.

Last update: 2024-03-25 02:32:07 UTC


README

Installation

Run the composer require command:

compsoer require sasaya/helloworld

Append Sasaya Hello World service provider to providers array in config/app.php.

'providers' => [
    /*
     * Laravel Framework Service Providers...
     */
    Illuminate\Foundation\Providers\ArtisanServiceProvider::class,
    ...

    /*
     * Application Service Providers...
     */
    App\Providers\AppServiceProvider::class,
    ...

    /*
     * Sasaya Service Providers...
     */
    Sasaya\HelloWorld\Providers\ServiceProvider::class,
],

Getting Started

Run the artisan command:

php artisan serve

Then we can open a browser and type http://localhost:8000 and we would see Hello World.