Advertisement
Suwandiaminsangaji

model/paymentconfimation.php

Jul 14th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App;
  4.  
  5. use Illuminate\Database\Eloquent\Model;
  6.  
  7. class PaymentConfirmation extends Model
  8. {
  9. protected $guarded = [];
  10.  
  11. public function customer()
  12. {
  13. return $this->belongsTo(Customer::class);
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement