아무거나

옐로퀀트ORM 조건 조회 본문

PHP/Laravel

옐로퀀트ORM 조건 조회

전봉근 2019. 4. 8. 16:08
반응형
[SyncTimes.php]

use Illuminate\Database\Eloquent\Model;



class SyncTimes extends Model
{
	public $timestamps = false;
    protected $primaryKey = 'seq';
    protected $connection = "auth";
    protected $table = 'sync_times';
}


// 조회할 빌더 내용
$syncTime = new SyncTimes();
$syncTimeResult = $syncTime->select('필드1', '필드2')
    ->where('조건1', {조건1})
    ->where('조건2', {조건2})
    ->orderBy('정렬1', 'desc')
    ->get();​ 

[laravel 옐로퀀트 사용 조건 조회]

모델은 반드시 복수형

 

 

반응형

'PHP > Laravel' 카테고리의 다른 글

도메인 기준 환경변수 분기처리  (0) 2019.04.08
상수 관리  (0) 2019.04.08
사용자 인증(authentication) 예제  (0) 2019.04.05
event 기능  (0) 2019.04.05
event & queue  (0) 2019.04.05
Comments