123456789101112131415161718 |
- <?php
- namespace App\Models;
- # use Illuminate\Database\Eloquent\Model;
- class Bill extends Model
- {
- protected $table = 'bill';
- public function careMonth() {
- return $this->belongsTo(CareMonth::class);
- }
- public function note() {
- return $this->belongsTo(Note::class);
- }
- }
|