'int', 'epoch' => 'int', 'last_ai_written_at' => 'datetime', 'write_counts' => 'int', ]; protected $fillable = [ 'category_id', 'seller', 'country_iso', 'epoch', 'filename', 'last_ai_written_at', 'write_counts' ]; public function category() { return $this->belongsTo(Category::class); } public function shopee_seller_scraped_images() { return $this->hasMany(ShopeeSellerScrapedImage::class); } }