1234567891011121314151617181920212223 |
- <?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);
- }
- public function client()
- {
- return $this->hasOne(Client::class, 'id', 'client_id');
- }
- }
|