PaymentHistory.php 281 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class PaymentHistory extends Model
  5. {
  6. protected $table = "payment_history";
  7. protected $guarded=['id'];
  8. function jounal()
  9. {
  10. return $this->belongsTo('App\Models\Jounal','jounal_id');
  11. }
  12. }