Revision 345 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Models;use Illuminate\Database\Eloquent\Model;use Illuminate\Database\Eloquent\Relations\BelongsTo;/*** App\Models\UserProperty** @property int $id* @property int|null $backend_user_id* @property int|null $property_id* @property-read \App\Models\Property|null $Property* @method static \Illuminate\Database\Eloquent\Builder|UserProperty newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|UserProperty newQuery()* @method static \Illuminate\Database\Eloquent\Builder|UserProperty query()* @method static \Illuminate\Database\Eloquent\Builder|UserProperty whereBackendUserId($value)* @method static \Illuminate\Database\Eloquent\Builder|UserProperty whereId($value)* @method static \Illuminate\Database\Eloquent\Builder|UserProperty wherePropertyId($value)* @mixin \Eloquent*/class UserProperty extends Model{public function Property(): BelongsTo{return $this->belongsTo( Property::class );}}