Mail Weiterleitung / verlauf / Notizen Buchnungen

This commit is contained in:
Kevin Adametz 2021-03-31 17:55:02 +02:00
parent f1a1baa913
commit 644ec93c53
47 changed files with 663 additions and 59 deletions

View file

@ -2,6 +2,7 @@
namespace App\Models;
use App\User;
use Illuminate\Database\Eloquent\Model;
@ -59,4 +60,9 @@ class SfGuardUser extends Model
protected $table = 'sf_guard_user';
public function user()
{
return $this->belongsTo(User::class, 'user_id');
}
}