mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 11:16:39 -05:00
22 lines
758 B
PHP
22 lines
758 B
PHP
<?php
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Get Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
Route::get('/blog-entries', 'App\Http\Controllers\ApiController@getBlogEntries');
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Post Routes
|
|
|--------------------------------------------------------------------------
|
|
*/
|
|
|
|
Route::post('/meta', 'App\Http\Controllers\ApiController@postMeta');
|
|
Route::post('/contact-submit', 'App\Http\Controllers\ApiController@postContactSubmit');
|
|
Route::post('/subscription-submit', 'App\Http\Controllers\ApiController@postSubscriptionSubmit');
|