CompanyLocation.php 270 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CompanyLocation extends Model
  5. {
  6. protected $table = 'company_location';
  7. public function displayName(){
  8. return implode(" ", [$this->line1, $this->city, $this->state]);
  9. }
  10. }