Skip to content
Snippets Groups Projects
Select Git revision
  • d9dcced417d2bcc2d279c958a56dd22ea10480d4
  • master default protected
2 results

Company.php

Blame
  • Company.php 290 B
    <?php
    
    namespace bdd\models;
    
    class Company extends \Illuminate\Database\Eloquent\Model
    {
        protected $table = 'company';
        protected $primaryKey = 'id';
        public $timestamps = false;
    
        public function platform(){
           return $this->belongsTo('bdd\models\company', 'id');
        }
    }