Fix Laravel Pint formatting

This commit is contained in:
root
2026-06-09 00:03:03 -04:00
parent 8d4d610b82
commit b5fd4a4ca1
1414 changed files with 11317 additions and 10201 deletions
+3 -5
View File
@@ -2,8 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
class ParentNotification extends BaseModel
{
protected $table = 'parent_notifications';
@@ -25,7 +23,7 @@ class ParentNotification extends BaseModel
];
protected $casts = [
'student_id' => 'integer',
'student_id' => 'integer',
// incident_date is stored as Y-m-d in legacy usage
'incident_date' => 'date',
];
@@ -52,7 +50,7 @@ class ParentNotification extends BaseModel
->whereDate('incident_date', $incidentYmd)
->where('channel', $channel);
if (!empty($to)) {
if (! empty($to)) {
$q->where('to_address', $to);
}
@@ -60,4 +58,4 @@ class ParentNotification extends BaseModel
return $row && (($row->status ?? '') === 'sent');
}
}
}