Company.php 279 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Company extends Model
  5. {
  6. protected $table = 'company';
  7. public function locations(){
  8. return $this->hasMany(CompanyLocation::class, 'company_id', 'id')->orderBy('line1', 'ASC');
  9. }
  10. }