PHP Classes

File: routes/auth_routes.php

Recommend this page to a friend!
  Classes of Leonardo Di Sarli   Ala PHP API Micro-Framework   routes/auth_routes.php   Download  
File: routes/auth_routes.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Ala PHP API Micro-Framework
Generate base code for API using a query builder
Author: By
Last change:
Date: 6 months ago
Size: 191 bytes
 

Contents

Class file image Download
<?php

$router
->post(
   
'/auth/generate',
    [
       
'uses' => 'AuthGenerateController@process',
       
'validator' => 'App\Domains\Auth\Http\Validators\AuthGenerateValidator'
   
]
);