Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-08 23:30:22 -04:00
parent 567dc24649
commit c792b8be05
1288 changed files with 10766 additions and 9669 deletions
+2 -4
View File
@@ -2,8 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
class ClassPreparationLog extends BaseModel
{
protected $table = 'class_preparation_log';
@@ -22,7 +20,7 @@ class ClassPreparationLog extends BaseModel
protected $casts = [
'class_section_id' => 'integer',
// If prep_data is JSON in DB, use 'array' (or 'json') cast:
'prep_data' => 'array',
'prep_data' => 'array',
];
// Optional relationship
@@ -30,4 +28,4 @@ class ClassPreparationLog extends BaseModel
{
return $this->belongsTo(ClassSection::class, 'class_section_id');
}
}
}