2021-11-01 16:56:17 -04:00
|
|
|
<?php
|
|
|
|
namespace PonePaste\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class PageView extends Model {
|
|
|
|
protected $table = 'page_view';
|
2021-11-02 19:09:46 -04:00
|
|
|
protected $fillable = ['date'];
|
|
|
|
|
|
|
|
public $timestamps = false;
|
2021-11-01 16:56:17 -04:00
|
|
|
}
|