mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
11 lines
214 B
PHP
11 lines
214 B
PHP
<?php
|
|
namespace PonePaste\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PageView extends Model {
|
|
protected $table = 'page_view';
|
|
protected $fillable = ['date'];
|
|
|
|
public $timestamps = false;
|
|
}
|