ClaimLine.php 263 B

12345678910111213141516
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class ClaimLine extends Model
  5. {
  6. protected $table = 'claim_line';
  7. public function claimLineIcds(){
  8. return $this->hasMany(ClaimLineIcd::class, 'claim_line_id', 'id');
  9. }
  10. }