schneespur/app/Models/MonthlyStatistic.php
Michael 2c63440ed8 Revert: move code back to project root from schneespur/ subdirectory
- Reverts the schneespur/ subdirectory restructure (b8e426b)
- Restores package.json and vite.config.js (needed for npm build, were
  removed in an earlier cleanup before the restructure)
- Updates public/build/ assets with current Vite output (new content hashes)
2026-05-17 18:24:26 +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',
];
}
}