| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- /**
- * @property int $id
- * @property int $unit_id
- * @property int $financial_plan_account_id
- * @property int $student_id
- * @property int $student_contract_id
- * @property string $price
- * @property string $fine
- * @property string $fees
- * @property string $due_date
- * @property string|null $payment_date
- * @property string|null $asaas_id
- * @property string $status
- * @property \Illuminate\Support\Carbon|null $created_at
- * @property \Illuminate\Support\Carbon|null $updated_at
- * @property string|null $deleted_at
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive newModelQuery()
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive newQuery()
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive query()
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereAsaasId($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereCreatedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereDeletedAt($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereDueDate($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereFees($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereFinancialPlanAccountId($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereFine($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereId($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive wherePaymentDate($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive wherePrice($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereStatus($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereStudentContractId($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereStudentId($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|FinancialAccountReceive whereUnitId($value)
- * @method static \Illuminate\Database\Eloquent\Builder<static>|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
- }
|