1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-09 20:52:56 +01:00

Load deleted payment contact

This commit is contained in:
Hillel Coren 2018-04-29 12:37:49 +03:00
parent ecbe609961
commit 1ae2fdf5bb

View File

@ -92,7 +92,7 @@ class Payment extends EntityModel
*/
public function contact()
{
return $this->belongsTo('App\Models\Contact');
return $this->belongsTo('App\Models\Contact')->withTrashed();
}
/**