コード例 #1
0
ファイル: GalleryItem.php プロジェクト: teewebapp/gallery
 public function __construct(array $attributes = array())
 {
     $this->hasAttachedFile('image', ['styles' => ['medium' => '470x330']]);
     parent::__construct($attributes);
 }
コード例 #2
0
ファイル: BannerItem.php プロジェクト: teewebapp/banner
 public function __construct(array $attributes = array())
 {
     $this->hasAttachedFile('image', ['styles' => ['left' => 'x248']]);
     parent::__construct($attributes);
 }
コード例 #3
0
ファイル: ProductImage.php プロジェクト: teewebapp/product
 public function __construct(array $attributes = array())
 {
     $this->hasAttachedFile('image', ['styles' => ['thumbnail' => '275x', 'small' => '100x', 'big' => '1000x']]);
     parent::__construct($attributes);
 }