⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hospital.dev-unit.com
/
app
/
Models
/
View File Name :
MedicineBill.php
<?php namespace App\Models; use App\Traits\PopulateTenantID; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\HasMany; use Stancl\Tenancy\Database\Concerns\BelongsToTenant; /** * App\Models\MedicineBill * * @property int $id * @property string $bill_number * @property int $patient_id * @property int|null $doctor_id * @property string $model_type * @property string $model_id * @property int|null $case_id * @property int $admission_id * @property float $discount * @property float $amount * @property float $paid_amount * @property int $payment_status * @property float $balance_amount * @property int $payment_type * @property string|null $note * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill newQuery() * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill query() * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereAdmissionId($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereAmount($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereBalanceAmount($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereBillNumber($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereCaseId($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereDiscount($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereDoctorId($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereModelId($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereModelType($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereNote($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill wherePaidAmount($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill wherePatientId($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill wherePaymentStatus($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill wherePaymentType($value) * @method static \Illuminate\Database\Eloquent\Builder|MedicineBill whereUpdatedAt($value) * * @mixin \Eloquent */ class MedicineBill extends Model { use BelongsToTenant, PopulateTenantID; protected $table = 'medicine_bills'; protected $fillable = [ 'tanant_id', 'bill_number', 'patient_id', 'doctor_id', 'model_type', 'model_id', 'discount', 'net_amount', 'tax_amount', 'payment_status', 'payment_type', 'note', 'total', 'bill_date', ]; const MEDICINE_BILL_CASH = 0; const MEDICINE_BILL_CHEQUE = 1; const MEDICINE_BILL_STRIPE = 5; const MEDICINE_BILL_RAZORPAY = 2; const MEDICINE_BILL_PAYSTACK = 3; const MEDICINE_BILL_PHONEPE = 4; const MEDICINE_BILL_FLUTTERWAVE = 6; const MEDICINE_BILL_PAYPAL = 7; const UNPAID = 0; const PAID = 1; const PARTIALY_PAID = 2; const PAYMENT_STATUS_ARRAY = [ self::UNPAID => 'Unpaid', self::PAID => 'Paid', ]; public function patient(): BelongsTo { return $this->belongsTo(Patient::class, 'patient_id'); } public function doctor(): BelongsTo { return $this->belongsTo(Doctor::class, 'doctor_id'); } public function saleMedicine(): HasMany { return $this->hasMany(SaleMedicine::class, 'medicine_bill_id'); } }