<?php namespace App\Models; use App\Helpers\Constants; use Illuminate\Database\Eloquent\Model; class CrawlerListenBlacklist extends Model { protected $table = Constants::TABLE_CRAWLER_LISTEN_BLACKLISTS; public $timestamps = true; protected $fillable = [ 'track_id', 'src', 'title' ]; }