PHP Classes

File: routes/api.php

Recommend this page to a friend!
  Classes of uche   PHP Chat API   routes/api.php   Download  
File: routes/api.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Chat API
Exchange chat messages between users using an API
Author: By
Last change:
Date: 3 years ago
Size: 709 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Http\Request;
use
Illuminate\Support\Facades\Route;

/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/

#auth
Route::post('auth/login', 'AuthController@login');

#messages
Route::middleware(['check.token', 'auth:api'])->group(function () {
   
Route::post('messages', 'MessageController@store');
   
Route::get('messages', 'MessageController@index');
});