|FinancialAccountPayable newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable newQuery() * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable query() * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereDueDate($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereFees($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereFinancialPlanAccountId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereFine($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable wherePaymentDate($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable wherePrice($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereStatus($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereSupplierId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|FinancialAccountPayable whereUpdatedAt($value) * @mixin \Eloquent */ class FinancialAccountPayable extends Model { use HasFactory; protected $table = 'financial_account_payables'; 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 }