12345678910111213141516171819 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class Service extends Model
- {
- use SoftDeletes;
- protected $table = 'service';
- protected $fillable = ['utype','uid','service_type','status','detail'];
- public function organization()
- {
- return $this->belongsTo(Organization::class);
- }
- }
|