/
home
/
henzagold
/
server
/
app
/
Models
/
File Upload :
llllll
Current File: /home/henzagold/server/app/Models/Ciny.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Ciny extends Model { use HasFactory,SoftDeletes,Selector; protected $fillable = [ 'title', 'icon_id', 'is_active', 'description', 'collection_id' ]; protected $casts = [ 'is_active' => 'boolean', ]; public function icon() { return $this->belongsTo('App\Models\Image', 'icon_id'); } public function collection() { return $this->belongsTo('App\Models\Category', 'collection_id')->select('id','title'); } }
Copyright ©2k19 -
Hexid
|
Tex7ure