PHP code example of cohensive / laravel-amp

1. Go to this page and download the library: Download cohensive/laravel-amp library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

cohensive / laravel-amp example snippets


// app.php
'providers' => [
    ...
    Cohensive\Amp\AmpServiceProvider::class,
],
'aliases' => [
    ...
    'AmpRouter' => Cohensive\Amp\AmpRouteFacade::class,
]

/// app/Providers/RouteServiceProvider.php
use AmpRouter;

...
public function boot(Router $router)
{
    AmpRouter::registerMacros();

    parent::boot($router);
}

RouteServiceProvider.php
 php
//route.php
Route::amp('url-of-my-route', ['as' => 'my-route', 'uses' => 'PageController@text']);