PHP Classes

File: routes.php

Recommend this page to a friend!
  Classes of Ahmad Mustapha   Utility Web PHP API   routes.php   Download  
File: routes.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Utility Web PHP API
API to retrieve movie details and other resources
Author: By
Last change:
Date: 3 years ago
Size: 1,766 bytes
 

Contents

Class file image Download
<?php

use QuickRoute\Route;

Route::get('/', 'MainController@index');

Route::prefix('contact')->group(function () {
   
Route::get('/', 'ContactController@index');
   
Route::get('send-message', 'ContactController@sendMessage');
});

Route::prefix('movies')->group(function () {
   
Route::get('/', 'MovieController@index');
   
Route::get('fzmovies', 'MovieController@fzmovies');
   
Route::get('netnaija', 'MovieController@netnaija');
});

Route::prefix('tvshows')->group(function () {
   
Route::get('/', 'TVShowController@index');
   
Route::get('480mkv-com', 'TVShowController@femkvcom');
});

Route::prefix('others')->group(function (){
   
Route::get('/', 'OthersController@index');
   
Route::get('zippyshare', 'OthersController@zippyShare');
});

Route::prefix('api')
    ->
namespace('Api')
    ->
group(function () {
       
//CONTACT
       
Route::prefix('contact')
            ->
namespace('Contact')
            ->
group(function () {
               
Route::post('send-message', 'MessageController@sendMessage');
            });

       
//MOVIES
       
Route::prefix('movies')
            ->
namespace('Movies')
            ->
group(function () {
               
Route::get('fzmovies/{chosen}/{url}', 'FZMoviesController@index');
               
Route::get('netnaija/{url}', 'NetNaijaController@index');
            });

       
//TV SHOWS
       
Route::prefix('tvshows')
            ->
namespace('TVShows')
            ->
group(function () {
               
Route::get('480mkv-com/{url}', 'FEMkvComController@index');
            });

       
//OTHERS
       
Route::prefix('others')
            ->
namespace('Others')
            ->
group(function () {
               
Route::get('zippyshare/{url}', 'ZippyShareController@index');
            });
    });