CompanyLocation.php 476 B

1234567891011121314151617181920
  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. public function format(){
  11. return $this->line1.($this->line2? ', '.$this->line2: '').($this->city?', '.$this->city:'').($this->state?', '.$this->state:'').($this->zip? ' '.$this->zip:'');
  12. }
  13. }