<?php
namespace App;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
class Artist extends Model
{
public $table = 'artists';
protected $dates = [
'updated_at',
'created_at',
'deleted_at',
];
protected $fillable = [
'artist_title',
'slug',
'artist_desc',
'artist_image',
'artist_apple_music_link',
'artist_spotify_music_link',
'artist_video',
'live_status',
'iframe_title',
'created_at',
'updated_at',
'deleted_at',
'approved_at',
];
}