Skip to content

Instantly share code, notes, and snippets.

@ChadTaljaardt
Created February 14, 2017 15:31
Show Gist options
  • Save ChadTaljaardt/265e052591ac5ad236d8917c98ffd1b9 to your computer and use it in GitHub Desktop.
Save ChadTaljaardt/265e052591ac5ad236d8917c98ffd1b9 to your computer and use it in GitHub Desktop.
<?php
namespace App\Models;
use App\Traits\UuidModel;
use Illuminate\Database\Eloquent\Model;
class Detection extends Model
{
use UuidModel;
public $incrementing = false;
protected $table = "detections";
protected $fillable = ['plate_id', 'user_id', 'incident_id'];
protected $dates = ['created_at', 'updated_at'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment