Service.php 382 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\SoftDeletes;
  5. class Service extends Model
  6. {
  7. use SoftDeletes;
  8. protected $table = 'service';
  9. protected $fillable = ['utype','uid','service_type','status','detail'];
  10. public function organization()
  11. {
  12. return $this->belongsTo(Organization::class);
  13. }
  14. }