schneespur/release/schneespur-1.0.2/app/Models/MonthlyStatistic.php
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
Add neutral diagnostic framework for future reporting modules:
- DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer
- Laravel exception hook in bootstrap/app.php
- Module permission declarations (requires_permissions in module.json)
- Core diagnostic report points (module boot/install/update failures)
- Module documentation update (moduldoku.md)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-18 16:54:11 +00:00

39 lines
869 B
PHP

<?php
namespace App\Models;
use Database\Factories\MonthlyStatisticFactory;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class MonthlyStatistic extends Model
{
/** @use HasFactory<MonthlyStatisticFactory> */
use HasFactory;
protected $fillable = [
'year',
'month',
'total_jobs',
'raumen_count',
'streuen_count',
'kontrolle_count',
'raumen_streuen_count',
'manual_count',
'total_gps_points',
'total_photos',
'total_duration_minutes',
'avg_temperature',
'unique_customers',
'unique_drivers',
];
protected function casts(): array
{
return [
'year' => 'integer',
'month' => 'integer',
'avg_temperature' => 'decimal:2',
];
}
}