Revision 354 | 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\WebProperty** @property int $ID* @property int $web_id* @property int $property_id* @property string $Bezeichnung* @property-read \App\Models\Property $Property* @method static \Illuminate\Database\Eloquent\Builder|WebProperty newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|WebProperty newQuery()* @method static \Illuminate\Database\Eloquent\Builder|WebProperty query()* @method static \Illuminate\Database\Eloquent\Builder|WebProperty whereBezeichnung($value)* @method static \Illuminate\Database\Eloquent\Builder|WebProperty whereID($value)* @method static \Illuminate\Database\Eloquent\Builder|WebProperty wherePropertyId($value)* @method static \Illuminate\Database\Eloquent\Builder|WebProperty whereWebId($value)* @mixin \Eloquent*/class WebProperty extends Model{protected $connection = "cms";public function Property(): BelongsTo{return $this->belongsTo( Property::class );}}