<?php

use Illuminate\Support\Facades\Route;
use App\Http\Controllers\API\Company\BillableRate\BillableRateController;


Route::get('/worker-billable-rates', [BillableRateController::class, 'index']);
Route::get('/worker-rate-overheaded/{id}', [BillableRateController::class, 'fetchWorkerBillableRate']);
Route::get('/worker-rate-details/{id}', [BillableRateController::class, 'getWorkerBillRate']);
Route::put('/update-rate-details', [BillableRateController::class, 'updateWorkersBillableRate']);
Route::post('/bulk-update-billable-rate', [BillableRateController::class, 'bulkUpdateBillableRate']);