17 lines
365 B
PHP
17 lines
365 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
use App\Helpers\ApiResponse;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class CommonController
|
|
{
|
|
public static function getComeCode()
|
|
{
|
|
$query = DB::table('COM_CODE')
|
|
->select(['CODE_TP_ID', 'CODE_ID', 'CODE_VAL', 'CODE_DESC', 'USE_YN']);
|
|
return ApiResponse::response('get', $query);
|
|
}
|
|
}
|