property.php
1 KB
<?php
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!
|
*/
//资产-需要验证
Route::group(["prefix"=>"property", "middleware"=>['auth.identifier']], function (){
Route::get('/track/list', 'PropertyTrackController@list');
Route::get('/track/show', 'PropertyTrackController@show');
Route::get('/track/pending', 'PropertyTrackController@pending');
Route::get('/track/file', 'PropertyTrackController@file');
});
Route::group(["prefix"=>"property"], function (){
Route::get('/track/share', 'PropertyTrackController@share');
});
//资产-分享链接
Route::group(["prefix"=>"property", "middleware"=>['auth.share']], function (){
});