for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\LaravelTracker\Models;
/**
* Class Query
*
* @package Arcanedev\LaravelTracker\Models
* @author ARCANEDEV <[email protected]>
* @property int id
* @property string query
* @property array arguments
* @property \Carbon\Carbon created_at
* @property \Carbon\Carbon updated_at
*/
class Query extends Model
{
/* ------------------------------------------------------------------------------------------------
| Properties
| ------------------------------------------------------------------------------------------------
* The table associated with the model.
* @var string
protected $table = 'queries';
* The attributes that are mass assignable.
* @var array
protected $fillable = ['query', 'arguments'];
* The attributes that should be cast to native types.
protected $casts = [
'id' => 'int',
'arguments' => 'array',
];
| Relationships
}