<?php

use Illuminate\Support\Facades\Route;
use App\Http\Controllers\API\Company\Account\AccountController;
use App\Http\Controllers\API\Company\Account\CompanyController;



Route::post('/company-info', [CompanyController::class, 'getDetails']); //should be on account.php api file : /company/information
Route::put('/update-company-info/{id}', [CompanyController::class, 'update']); //should be on account.php api file : /company/information

Route::get('/registration-data', [AccountController::class, 'fetchRegistrationData']);
