PHP Classes

File: app/routes.php

Recommend this page to a friend!
  Classes of akeel   F3A   app/routes.php   Download  
File: app/routes.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: F3A
PHP Web development framework like Laravel lite
Author: By
Last change:
Date: 2 years ago
Size: 212 bytes
 

Contents

Class file image Download
<?php

use App\Helpers\Route;

/**
 * Application pages
 */
Route::get('/', 'PageController@index');

/**
 * API POST V1 Authenticated Route
 */
Route::post('/api/v1/json', 'Ajax\PostController@index', '', true);