public dash and view counting

This commit is contained in:
2018-07-29 11:52:29 +02:00
parent f77b1789fa
commit a79b5ae7d8
37 changed files with 415 additions and 663 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* Model representing the pivot table, used for more efficient favourite counting
*/
class TableFavouritePivot extends Model
{
protected $table = 'table_favourites';
public $timestamps = [];
}