<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class EventInterest extends Model
{
public static function addNew($user_id, $event_id)
{
$interest = new self;
$interest->user_id = $user_id;
$interest->event_id = $event_id;
$interest->save();
}
public function remove()
{
$this->delete();
}
}