|FinancialAccountReceive newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive newQuery() * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive query() * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereAsaasId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereDueDate($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereFees($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereFinancialPlanAccountId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereFine($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive wherePaymentDate($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive wherePrice($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereStatus($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereStudentContractId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereStudentId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountReceive whereUpdatedAt($value) * @mixin \Eloquent */ class FinancialAccountReceive extends Model { use HasFactory; protected $table = 'financial_account_receives'; protected $guarded = [ 'id', // Add more fields that shouldn't be edited here ]; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', // Add your casts here (e.g., 'is_active' => 'boolean') ]; // Relationships // Business Logic Methods // Custom Finders // Query Scopes }