gdc_cmod/app/Controllers/CustomerService.php
mikael-zakaria 77f15bfc94 first commit
2025-11-11 09:14:25 +07:00

12 lines
157 B
PHP

<?php
namespace App\Controllers;
class CustomerService extends BaseController
{
public function index()
{
return view('cs/index');
}
}