Client.php 239 B

123456789101112131415
  1. <?php
  2. namespace App\Models;
  3. # use Illuminate\Database\Eloquent\Model;
  4. class Client extends Model
  5. {
  6. protected $table = 'client';
  7. public function nameDisplay(){
  8. return $this->name_last . ', '. $this->name_first;
  9. }
  10. }