service.php
960 字节
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::group(['middleware' => ['cors']], function () {
// 图片上传
Route::any('upload/image', 'ImageController@store')->name('upload.image');
// 图片缩略图
Route::get('image/thumb', 'ImageController@thumb')->name('image.thumb');
// 视频上传
Route::any('upload/video', 'VideoController@store')->name('upload.video');
// 七牛云图片上传
Route::any('qiniu-upload', 'QiniuUploadController@store')->name('qiniu.upload.file');
Route::any('qiniu-delete', 'QiniuUploadController@destroy')->name('qiniu.delete.file');
});