Client.php 240 B

12345678910111213141516
  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 notes()
  8. {
  9. return $this->hasMany(Note::class, 'client_id', 'id');
  10. }
  11. }