CustomerReturn.php 404 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class CustomerReturn extends Model
  5. {
  6. protected $connection = 'mysql_app';
  7. protected $table='customer_return';
  8. public function applydetail(){
  9. return $this->hasMany(CustomerReturnDetail::class,'customer_id','id');
  10. }
  11. public function user(){
  12. return $this->hasOne(User::class,'id','user_id');
  13. }
  14. }