<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\Cache;
class FanArtistCheckoutIgnore extends Model
{
public static function addNew($fan_id, $artist_id)
{
$ignore = new self;
$ignore->fan_id = $fan_id;
$ignore->artist_id = $artist_id;
$ignore->save();
Cache::forget("{$fan_id}_band_recomendations");
return true;
}
}