12345678910111213141516 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- class CompanyLocation extends Model
- {
- protected $table = 'company_location';
- public function displayName(){
- return implode(" ", [$this->line1, $this->city, $this->state]);
- }
- }
|