/
home
/
sditechnicalteam
/
www
/
app
/
Models
/
File Upload :
llllll
Current File: /home/sditechnicalteam/www/app/Models/ProductSubCategory.php
<?php namespace App\Models; use App\Traits\HasCompany; use Illuminate\Database\Eloquent\Relations\BelongsTo; /** * App\Models\ProductSubCategory * * @property int $id * @property int $category_id * @property string $category_name * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property-read \App\Models\ProductCategory $category * @property-read mixed $icon * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory newQuery() * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory query() * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory whereCategoryId($value) * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory whereCategoryName($value) * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory whereUpdatedAt($value) * @mixin \Eloquent * @property int|null $company_id * @property-read \App\Models\Company|null $company * @method static \Illuminate\Database\Eloquent\Builder|ProductSubCategory whereCompanyId($value) */ class ProductSubCategory extends BaseModel { use HasCompany; protected $table = 'product_sub_category'; public function category(): BelongsTo { return $this->belongsTo(ProductCategory::class, 'category_id'); } }
Copyright ©2k19 -
Hexid
|
Tex7ure