<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class ArtistArtistCheckoutIgnore extends Model
{
public static function addNew($artist1_id, $artist2_id)
{
$ignore = new self;
$ignore->artist1_id = $artist1_id;
$ignore->artist2_id = $artist2_id;
$ignore->save();
return true;
}
}