swede2k/laravel-hello

Laravel Hello World simple package

dev-master 2018-09-11 11:10 UTC

This package is auto-updated.

Last update: 2024-05-12 03:43:50 UTC


README

Laravel Hello World simple package

Installation

composer require swede2k/laravel-hello --dev

Usage

Hello::world();

Route Example:

Route::get('/', function () {
    return Hello::world();
});

Controller Example:

public function index()
{
    return Hello::world();
}

😄 😄 😄