You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
975 B

<?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"];
}