unit_payment_account.php 282 B

123456789
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. use App\Http\Controllers\UnitPaymentAccountController;
  4. Route::controller(UnitPaymentAccountController::class)->prefix('unit-payment-account')->group(function () {
  5. Route::get('/me', 'showMe');
  6. Route::post('/me', 'upsertMe');
  7. });