1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
use Illuminate\Database\Capsule\Manager as DB; use Carbon\Carbon as Carbon;
class ApplicationFile extends BaseModel { protected $table = "application_file";
/*public static function application_type($type) { $type_list = array("CHINESE_MERCHANT" => "Chinese Merchant", "OVERSEAS_MERCHANT" => "Overseas Merchant");
if (!empty($type)) { return $type_list[$type]; } else { return $type_list; } }*/
}
|