Revision 2 | Blame | Vergleich mit vorheriger | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Models;use Illuminate\Database\Eloquent\Factories\HasFactory;use Illuminate\Database\Eloquent\Model;/*** App\Models\Price** @property int $id* @property int $item_id* @property int $preis_index* @property float $preis* @property string $staffel* @property string $created_by* @property string $updated_by* @property \Illuminate\Support\Carbon|null $created_at* @property \Illuminate\Support\Carbon|null $updated_at* @method static \Database\Factories\PriceFactory factory($count = null, $state = [])* @method static \Illuminate\Database\Eloquent\Builder|Price newModelQuery()* @method static \Illuminate\Database\Eloquent\Builder|Price newQuery()* @method static \Illuminate\Database\Eloquent\Builder|Price query()* @method static \Illuminate\Database\Eloquent\Builder|Price whereCreatedAt($value)* @method static \Illuminate\Database\Eloquent\Builder|Price whereCreatedBy($value)* @method static \Illuminate\Database\Eloquent\Builder|Price whereId($value)* @method static \Illuminate\Database\Eloquent\Builder|Price whereItemId($value)* @method static \Illuminate\Database\Eloquent\Builder|Price wherePreis($value)* @method static \Illuminate\Database\Eloquent\Builder|Price wherePreisIndex($value)* @method static \Illuminate\Database\Eloquent\Builder|Price whereStaffel($value)* @method static \Illuminate\Database\Eloquent\Builder|Price whereUpdatedAt($value)* @method static \Illuminate\Database\Eloquent\Builder|Price whereUpdatedBy($value)* @mixin \Eloquent*/class Price extends Model{use HasFactory;}