| 12345678910111213141516171819202122 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class ReportProtocolloNote extends Model
- {
- use HasFactory;
- public $timestamps = false;
- protected $table = 'fcf_reports_reports_protocollo_notes';
- protected $fillable = [
- 'report_id',
- 'text' ,
- 'created',
- 'created_by',
- ];
- }
|