|
|
<?php
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
/**
|
|
|
* App\BiCookies
|
|
|
*
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies newModelQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies newQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies query()
|
|
|
* @mixin \Eloquent
|
|
|
* @property int $id
|
|
|
* @property string $cookie
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies whereCookie($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies whereCreatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies whereId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BiCookies whereUpdatedAt($value)
|
|
|
*/
|
|
|
class BiCookies extends Model
|
|
|
{
|
|
|
//
|
|
|
protected $fillable = ["id", "cookie"];
|
|
|
|
|
|
}
|