<?php
namespace App\Models;
/**
* Model representing the pivot table, used for more efficient favourite counting
*/
class TableFavouritePivot extends BaseModel
{
protected $table = 'table_favourites';
public $timestamps = [];
}