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
+4 -5
View File
@@ -2,7 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
use Illuminate\Support\Facades\DB;
class FamilyStudent extends BaseModel
@@ -20,9 +19,9 @@ class FamilyStudent extends BaseModel
];
protected $casts = [
'family_id' => 'integer',
'student_id' => 'integer',
'is_primary_home' => 'boolean',
'family_id' => 'integer',
'student_id' => 'integer',
'is_primary_home' => 'boolean',
];
/* Optional relationships */
@@ -53,4 +52,4 @@ class FamilyStudent extends BaseModel
->map(fn ($r) => (array) $r)
->all();
}
}
}