Files
izyim/app/Http/Controllers/Companies/ProfileCompanyController.php
T
Omair Saleh e203eb08ec large commit
2019-06-03 10:34:49 +08:00

16 lines
270 B
PHP

<?php
namespace App\Http\Controllers\Companies;
use App\Classes\Modules\ControllersLogic\Companies\ProfileCompanyLogic;
class ProfileCompanyController
{
public function show(string $id, ProfileCompanyLogic $logic){
return $logic->execute($id);
}
}