-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathReport.php
More file actions
30 lines (25 loc) · 640 Bytes
/
Report.php
File metadata and controls
30 lines (25 loc) · 640 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/*
* Author: WOLF
* Name: Report.php
* Modified : lun., 26 févr. 2024 12:24
* Description: ...
*
* Copyright 2024 -[MR.WOLF]-[WS]-
*/
namespace MrWolfGb\Traccar\Models;
use Illuminate\Database\Eloquent\Model;
use MrWolfGb\Traccar\Trait\ArrayToModel;
/**
* MrWolfGb\Traccar\Models\Report
*
* @method static \Illuminate\Database\Eloquent\Builder|Report newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Report newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Report query()
* @mixin \Eloquent
*/
class Report extends Model
{
use ArrayToModel;
protected $guarded = [];
}