fix tests

This commit is contained in:
root
2026-06-11 11:46:12 -04:00
parent c91fa2ce4d
commit 5ead80fdc7
1489 changed files with 11349 additions and 10305 deletions
+3 -5
View File
@@ -2,8 +2,6 @@
namespace App\Models;
use App\Models\BaseModel;
class InvoiceStudentList extends BaseModel
{
protected $table = 'invoice_students_list';
@@ -27,8 +25,8 @@ class InvoiceStudentList extends BaseModel
protected $casts = [
'invoice_id' => 'integer',
'student_id' => 'integer',
'school_id' => 'integer',
'enrolled' => 'boolean',
'school_id' => 'integer',
'enrolled' => 'boolean',
];
/* Optional relationships */
@@ -41,4 +39,4 @@ class InvoiceStudentList extends BaseModel
{
return $this->belongsTo(Student::class, 'student_id');
}
}
}