No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

KelompokDriver.php 376B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Model\Raharja;
  3. use Illuminate\Database\Eloquent\Model;
  4. class KelompokDriver extends Model
  5. {
  6. protected $table = 'kelompok_driver';
  7. protected $fillable = [
  8. 'logo',
  9. 'nama',
  10. 'website',
  11. 'deskripsi',
  12. ];
  13. public function profile(){
  14. return $this->hasMany(Profile::class, 'organization_id', 'id');
  15. }
  16. }