/**
  * 判断pos是否已经被用
  * @param $pos
  * @return bool
  */
 protected function checkPos($pos)
 {
     $layout = ShopIndexLayout::whereRaw("pos=:pos", array(":pos" => $pos))->first();
     if ($layout instanceof ShopIndexLayout) {
         return false;
     }
     return true;
 }