| Zeile 3... |
Zeile 3... |
| 3 |
namespace App\Models;
|
3 |
namespace App\Models;
|
| Zeile 4... |
Zeile 4... |
| 4 |
|
4 |
|
| 5 |
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
5 |
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
| Zeile -... |
Zeile 6... |
| - |
|
6 |
use Illuminate\Database\Eloquent\Model;
|
| - |
|
7 |
|
| - |
|
8 |
/**
|
| - |
|
9 |
* App\Models\Price
|
| - |
|
10 |
*
|
| - |
|
11 |
* @property int $id
|
| - |
|
12 |
* @property int $item_id
|
| - |
|
13 |
* @property int $preis_index
|
| - |
|
14 |
* @property float $preis
|
| - |
|
15 |
* @property string $staffel
|
| - |
|
16 |
* @property string $created_by
|
| - |
|
17 |
* @property string $updated_by
|
| - |
|
18 |
* @property \Illuminate\Support\Carbon|null $created_at
|
| - |
|
19 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
| - |
|
20 |
* @method static \Database\Factories\PriceFactory factory($count = null, $state = [])
|
| - |
|
21 |
* @method static \Illuminate\Database\Eloquent\Builder|Price newModelQuery()
|
| - |
|
22 |
* @method static \Illuminate\Database\Eloquent\Builder|Price newQuery()
|
| - |
|
23 |
* @method static \Illuminate\Database\Eloquent\Builder|Price query()
|
| - |
|
24 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereCreatedAt($value)
|
| - |
|
25 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereCreatedBy($value)
|
| - |
|
26 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereId($value)
|
| - |
|
27 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereItemId($value)
|
| - |
|
28 |
* @method static \Illuminate\Database\Eloquent\Builder|Price wherePreis($value)
|
| - |
|
29 |
* @method static \Illuminate\Database\Eloquent\Builder|Price wherePreisIndex($value)
|
| - |
|
30 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereStaffel($value)
|
| - |
|
31 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereUpdatedAt($value)
|
| - |
|
32 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereUpdatedBy($value)
|
| 6 |
use Illuminate\Database\Eloquent\Model;
|
33 |
* @mixin \Eloquent
|
| 7 |
|
34 |
*/
|
| 8 |
class Price extends Model
|
35 |
class Price extends Model
|
| 9 |
{
|
36 |
{
|