Как выполнить подобный запрос в laravel с помощью DB::Table или чего-то вроде??
INSERT IGNORE INTO 'banban' ('column') values('value1', 'value2')
DB::table('table')->insertIgnore( array(
array('column'=>'value1',),
array('column'=>'value2')
)
)
Подробнее здесь: https://stackoverflow.com/questions/267 ... iple-array