| 1664 |
lars |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
// @formatter:off
|
|
|
4 |
/**
|
|
|
5 |
* A helper file for your Eloquent Models
|
|
|
6 |
* Copy the phpDocs from this file to the correct Model,
|
|
|
7 |
* And remove them from this file, to prevent double declarations.
|
|
|
8 |
*
|
|
|
9 |
* @author Barry vd. Heuvel <barryvdh@gmail.com>
|
|
|
10 |
*/
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
namespace App\Models{
|
|
|
14 |
/**
|
|
|
15 |
* App\Models\Action
|
|
|
16 |
*
|
|
|
17 |
* @property int $id
|
|
|
18 |
* @property int|null $shop_id
|
|
|
19 |
* @property string $headline
|
|
|
20 |
* @property string $text
|
|
|
21 |
* @property int $art
|
|
|
22 |
* @property int $rank
|
|
|
23 |
* @property string $config
|
|
|
24 |
* @property string $category
|
|
|
25 |
* @property string $notes
|
|
|
26 |
* @property string $valid_from
|
|
|
27 |
* @property string $valid_to
|
|
|
28 |
* @property string $created_by
|
|
|
29 |
* @property string $updated_by
|
|
|
30 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
31 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
32 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ActionMedium> $medium
|
|
|
33 |
* @property-read int|null $medium_count
|
|
|
34 |
* @method static \Database\Factories\ActionFactory factory($count = null, $state = [])
|
|
|
35 |
* @method static \Illuminate\Database\Eloquent\Builder|Action newModelQuery()
|
|
|
36 |
* @method static \Illuminate\Database\Eloquent\Builder|Action newQuery()
|
|
|
37 |
* @method static \Illuminate\Database\Eloquent\Builder|Action query()
|
|
|
38 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereArt($value)
|
|
|
39 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereCategory($value)
|
|
|
40 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereConfig($value)
|
|
|
41 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereCreatedAt($value)
|
|
|
42 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereCreatedBy($value)
|
|
|
43 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereHeadline($value)
|
|
|
44 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereId($value)
|
|
|
45 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereNotes($value)
|
|
|
46 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereRank($value)
|
|
|
47 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereShopId($value)
|
|
|
48 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereText($value)
|
|
|
49 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereUpdatedAt($value)
|
|
|
50 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereUpdatedBy($value)
|
|
|
51 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereValidFrom($value)
|
|
|
52 |
* @method static \Illuminate\Database\Eloquent\Builder|Action whereValidTo($value)
|
|
|
53 |
*/
|
|
|
54 |
class Action extends \Eloquent {}
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
namespace App\Models{
|
|
|
58 |
/**
|
|
|
59 |
* App\Models\ActionMedium
|
|
|
60 |
*
|
|
|
61 |
* @property int $id
|
|
|
62 |
* @property int|null $action_id
|
|
|
63 |
* @property int|null $medium_id
|
|
|
64 |
* @property int|null $mobil_id
|
|
|
65 |
* @property int $rank
|
|
|
66 |
* @property string $created_by
|
|
|
67 |
* @property string $updated_by
|
|
|
68 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
69 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
70 |
* @property-read \App\Models\Medium|null $medium
|
|
|
71 |
* @method static \Database\Factories\ActionMediumFactory factory($count = null, $state = [])
|
|
|
72 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium newModelQuery()
|
|
|
73 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium newQuery()
|
|
|
74 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium query()
|
|
|
75 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereActionId($value)
|
|
|
76 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereCreatedAt($value)
|
|
|
77 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereCreatedBy($value)
|
|
|
78 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereId($value)
|
|
|
79 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereMediumId($value)
|
|
|
80 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereMobilId($value)
|
|
|
81 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereRank($value)
|
|
|
82 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereUpdatedAt($value)
|
|
|
83 |
* @method static \Illuminate\Database\Eloquent\Builder|ActionMedium whereUpdatedBy($value)
|
|
|
84 |
*/
|
|
|
85 |
class ActionMedium extends \Eloquent {}
|
|
|
86 |
}
|
|
|
87 |
|
|
|
88 |
namespace App\Models{
|
|
|
89 |
/**
|
|
|
90 |
* App\Models\Address
|
|
|
91 |
*
|
|
|
92 |
* @property int $id
|
|
|
93 |
* @property int|null $user_id
|
|
|
94 |
* @property string $salutation
|
|
|
95 |
* @property string $pro_title
|
|
|
96 |
* @property string $name
|
|
|
97 |
* @property string $lastname
|
|
|
98 |
* @property string $company
|
|
|
99 |
* @property string $company2
|
|
|
100 |
* @property string $street
|
|
|
101 |
* @property string $houseno
|
|
|
102 |
* @property string $street2
|
|
|
103 |
* @property string $zip
|
|
|
104 |
* @property string $city
|
|
|
105 |
* @property int|null $country_id
|
|
|
106 |
* @property int|null $state_id
|
|
|
107 |
* @property string $phone
|
|
|
108 |
* @property string $fax
|
|
|
109 |
* @property string $email
|
|
|
110 |
* @property string|null $birthdate
|
|
|
111 |
* @property int $schufa_validierung_age
|
|
|
112 |
* @property string $schufa_result
|
|
|
113 |
* @property string $legal_form
|
|
|
114 |
* @property string $hr_nr
|
|
|
115 |
* @property string $vat_id
|
|
|
116 |
* @property string $vat_free
|
|
|
117 |
* @property string $nettocalculation
|
|
|
118 |
* @property string $comment
|
|
|
119 |
* @property string $created_by
|
|
|
120 |
* @property string $updated_by
|
|
|
121 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
122 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
123 |
* @method static \Database\Factories\AddressFactory factory($count = null, $state = [])
|
|
|
124 |
* @method static \Illuminate\Database\Eloquent\Builder|Address newModelQuery()
|
|
|
125 |
* @method static \Illuminate\Database\Eloquent\Builder|Address newQuery()
|
|
|
126 |
* @method static \Illuminate\Database\Eloquent\Builder|Address query()
|
|
|
127 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereBirthdate($value)
|
|
|
128 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereCity($value)
|
|
|
129 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereComment($value)
|
|
|
130 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereCompany($value)
|
|
|
131 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereCompany2($value)
|
|
|
132 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereCountryId($value)
|
|
|
133 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereCreatedAt($value)
|
|
|
134 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereCreatedBy($value)
|
|
|
135 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereEmail($value)
|
|
|
136 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereFax($value)
|
|
|
137 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereHouseno($value)
|
|
|
138 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereHrNr($value)
|
|
|
139 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereId($value)
|
|
|
140 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereLastname($value)
|
|
|
141 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereLegalForm($value)
|
|
|
142 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereName($value)
|
|
|
143 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereNettocalculation($value)
|
|
|
144 |
* @method static \Illuminate\Database\Eloquent\Builder|Address wherePhone($value)
|
|
|
145 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereProTitle($value)
|
|
|
146 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereSalutation($value)
|
|
|
147 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereSchufaResult($value)
|
|
|
148 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereSchufaValidierungAge($value)
|
|
|
149 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereStateId($value)
|
|
|
150 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereStreet($value)
|
|
|
151 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereStreet2($value)
|
|
|
152 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereUpdatedAt($value)
|
|
|
153 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereUpdatedBy($value)
|
|
|
154 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereUserId($value)
|
|
|
155 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereVatFree($value)
|
|
|
156 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereVatId($value)
|
|
|
157 |
* @method static \Illuminate\Database\Eloquent\Builder|Address whereZip($value)
|
|
|
158 |
*/
|
|
|
159 |
class Address extends \Eloquent {}
|
|
|
160 |
}
|
|
|
161 |
|
|
|
162 |
namespace App\Models{
|
|
|
163 |
/**
|
|
|
164 |
* App\Models\BackendUser
|
|
|
165 |
*
|
|
|
166 |
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
|
|
|
167 |
* @property-read int|null $notifications_count
|
|
|
168 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
|
|
|
169 |
* @property-read int|null $tokens_count
|
|
|
170 |
* @method static \Illuminate\Database\Eloquent\Builder|BackendUser newModelQuery()
|
|
|
171 |
* @method static \Illuminate\Database\Eloquent\Builder|BackendUser newQuery()
|
|
|
172 |
* @method static \Illuminate\Database\Eloquent\Builder|BackendUser query()
|
|
|
173 |
*/
|
|
|
174 |
class BackendUser extends \Eloquent {}
|
|
|
175 |
}
|
|
|
176 |
|
|
|
177 |
namespace App\Models{
|
|
|
178 |
/**
|
|
|
179 |
* App\Models\Country
|
|
|
180 |
*
|
|
|
181 |
* @property int $id
|
|
|
182 |
* @property int $continent_id
|
|
|
183 |
* @property string $name_de
|
|
|
184 |
* @property string $name_uk
|
|
|
185 |
* @property string $capital
|
|
|
186 |
* @property string $isocode
|
|
|
187 |
* @property string $kfz
|
|
|
188 |
* @property string $iso-2
|
|
|
189 |
* @property string $iso-3
|
|
|
190 |
* @property string $ioc
|
|
|
191 |
* @property string $tld
|
|
|
192 |
* @property int $currency_id
|
|
|
193 |
* @property string $phone
|
|
|
194 |
* @property int $in_eu
|
|
|
195 |
* @property int $rank
|
|
|
196 |
* @method static \Illuminate\Database\Eloquent\Builder|Country newModelQuery()
|
|
|
197 |
* @method static \Illuminate\Database\Eloquent\Builder|Country newQuery()
|
|
|
198 |
* @method static \Illuminate\Database\Eloquent\Builder|Country query()
|
|
|
199 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCapital($value)
|
|
|
200 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereContinentId($value)
|
|
|
201 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereCurrencyId($value)
|
|
|
202 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereId($value)
|
|
|
203 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereInEu($value)
|
|
|
204 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIoc($value)
|
|
|
205 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso2($value)
|
|
|
206 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIso3($value)
|
|
|
207 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereIsocode($value)
|
|
|
208 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereKfz($value)
|
|
|
209 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereNameDe($value)
|
|
|
210 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereNameUk($value)
|
|
|
211 |
* @method static \Illuminate\Database\Eloquent\Builder|Country wherePhone($value)
|
|
|
212 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereRank($value)
|
|
|
213 |
* @method static \Illuminate\Database\Eloquent\Builder|Country whereTld($value)
|
|
|
214 |
*/
|
|
|
215 |
class Country extends \Eloquent {}
|
|
|
216 |
}
|
|
|
217 |
|
|
|
218 |
namespace App\Models{
|
|
|
219 |
/**
|
|
|
220 |
* App\Models\Directory
|
|
|
221 |
*
|
|
|
222 |
* @property int $id
|
|
|
223 |
* @property int|null $directory_id
|
|
|
224 |
* @property int|null $manufacturer_id
|
|
|
225 |
* @property string $name
|
|
|
226 |
* @property string $slug
|
|
|
227 |
* @property string $kennung
|
|
|
228 |
* @property int $articlemaster
|
|
|
229 |
* @property int $status
|
|
|
230 |
* @property string $url
|
|
|
231 |
* @property string $description
|
|
|
232 |
* @property string $description2
|
|
|
233 |
* @property string $short_line_1
|
|
|
234 |
* @property string $created_by
|
|
|
235 |
* @property string $updated_by
|
|
|
236 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
237 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
238 |
* @property-read Directory|null $directory
|
|
|
239 |
* @property-read \App\Models\Manufacturer|null $manufacturer
|
|
|
240 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\DirectoryMedium> $medium
|
|
|
241 |
* @property-read int|null $medium_count
|
|
|
242 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\DirectoryTemplate> $template
|
|
|
243 |
* @property-read int|null $template_count
|
|
|
244 |
* @method static \Database\Factories\DirectoryFactory factory($count = null, $state = [])
|
|
|
245 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory newModelQuery()
|
|
|
246 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory newQuery()
|
|
|
247 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory query()
|
|
|
248 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereArticlemaster($value)
|
|
|
249 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereCreatedAt($value)
|
|
|
250 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereCreatedBy($value)
|
|
|
251 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereDescription($value)
|
|
|
252 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereDescription2($value)
|
|
|
253 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereDirectoryId($value)
|
|
|
254 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereId($value)
|
|
|
255 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereKennung($value)
|
|
|
256 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereManufacturerId($value)
|
|
|
257 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereName($value)
|
|
|
258 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereShortLine1($value)
|
|
|
259 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereSlug($value)
|
|
|
260 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereStatus($value)
|
|
|
261 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereUpdatedAt($value)
|
|
|
262 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereUpdatedBy($value)
|
|
|
263 |
* @method static \Illuminate\Database\Eloquent\Builder|Directory whereUrl($value)
|
|
|
264 |
*/
|
|
|
265 |
class Directory extends \Eloquent {}
|
|
|
266 |
}
|
|
|
267 |
|
|
|
268 |
namespace App\Models{
|
|
|
269 |
/**
|
|
|
270 |
* App\Models\DirectoryMedium
|
|
|
271 |
*
|
|
|
272 |
* @property int $id
|
|
|
273 |
* @property int|null $directory_id
|
|
|
274 |
* @property int|null $medium_id
|
|
|
275 |
* @property int $rank
|
|
|
276 |
* @property int $similar
|
|
|
277 |
* @property string $created_by
|
|
|
278 |
* @property string $updated_by
|
|
|
279 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
280 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
281 |
* @property-read \App\Models\Medium|null $medium
|
|
|
282 |
* @method static \Database\Factories\DirectoryMediumFactory factory($count = null, $state = [])
|
|
|
283 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium newModelQuery()
|
|
|
284 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium newQuery()
|
|
|
285 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium query()
|
|
|
286 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereCreatedAt($value)
|
|
|
287 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereCreatedBy($value)
|
|
|
288 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereDirectoryId($value)
|
|
|
289 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereId($value)
|
|
|
290 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereMediumId($value)
|
|
|
291 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereRank($value)
|
|
|
292 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereSimilar($value)
|
|
|
293 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereUpdatedAt($value)
|
|
|
294 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryMedium whereUpdatedBy($value)
|
|
|
295 |
*/
|
|
|
296 |
class DirectoryMedium extends \Eloquent {}
|
|
|
297 |
}
|
|
|
298 |
|
|
|
299 |
namespace App\Models{
|
|
|
300 |
/**
|
|
|
301 |
* App\Models\DirectoryTemplate
|
|
|
302 |
*
|
|
|
303 |
* @property int $id
|
|
|
304 |
* @property int|null $template_id
|
|
|
305 |
* @property int|null $directory_id
|
|
|
306 |
* @property string $created_by
|
|
|
307 |
* @property string $updated_by
|
|
|
308 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
309 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
310 |
* @property-read \App\Models\Template|null $template
|
|
|
311 |
* @method static \Database\Factories\DirectoryTemplateFactory factory($count = null, $state = [])
|
|
|
312 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate newModelQuery()
|
|
|
313 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate newQuery()
|
|
|
314 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate query()
|
|
|
315 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereCreatedAt($value)
|
|
|
316 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereCreatedBy($value)
|
|
|
317 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereDirectoryId($value)
|
|
|
318 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereId($value)
|
|
|
319 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereTemplateId($value)
|
|
|
320 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereUpdatedAt($value)
|
|
|
321 |
* @method static \Illuminate\Database\Eloquent\Builder|DirectoryTemplate whereUpdatedBy($value)
|
|
|
322 |
*/
|
|
|
323 |
class DirectoryTemplate extends \Eloquent {}
|
|
|
324 |
}
|
|
|
325 |
|
|
|
326 |
namespace App\Models{
|
|
|
327 |
/**
|
|
|
328 |
* App\Models\Item
|
|
|
329 |
*
|
|
|
330 |
* @property int $id
|
|
|
331 |
* @property int|null $manufacturer_id
|
|
|
332 |
* @property int|null $directory_id
|
|
|
333 |
* @property int|null $shipping_group_id
|
|
|
334 |
* @property string $name
|
|
|
335 |
* @property string $slug
|
|
|
336 |
* @property int $status
|
|
|
337 |
* @property float $weight
|
|
|
338 |
* @property string $description
|
|
|
339 |
* @property string $ean
|
|
|
340 |
* @property string|null $mpn
|
|
|
341 |
* @property string $kennung
|
|
|
342 |
* @property string $short_line_1
|
|
|
343 |
* @property string $created_by
|
|
|
344 |
* @property string $updated_by
|
|
|
345 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
346 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
347 |
* @property-read \App\Models\Manufacturer|null $manufacturer
|
|
|
348 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\ItemMedium> $medium
|
|
|
349 |
* @property-read int|null $medium_count
|
|
|
350 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Price> $price
|
|
|
351 |
* @property-read int|null $price_count
|
|
|
352 |
* @method static \Database\Factories\ItemFactory factory($count = null, $state = [])
|
|
|
353 |
* @method static \Illuminate\Database\Eloquent\Builder|Item newModelQuery()
|
|
|
354 |
* @method static \Illuminate\Database\Eloquent\Builder|Item newQuery()
|
|
|
355 |
* @method static \Illuminate\Database\Eloquent\Builder|Item query()
|
|
|
356 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereCreatedAt($value)
|
|
|
357 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereCreatedBy($value)
|
|
|
358 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereDescription($value)
|
|
|
359 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereDirectoryId($value)
|
|
|
360 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereEan($value)
|
|
|
361 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereId($value)
|
|
|
362 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereKennung($value)
|
|
|
363 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereManufacturerId($value)
|
|
|
364 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereMpn($value)
|
|
|
365 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereName($value)
|
|
|
366 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereShippingGroupId($value)
|
|
|
367 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereShortLine1($value)
|
|
|
368 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereSlug($value)
|
|
|
369 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereStatus($value)
|
|
|
370 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereUpdatedAt($value)
|
|
|
371 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereUpdatedBy($value)
|
|
|
372 |
* @method static \Illuminate\Database\Eloquent\Builder|Item whereWeight($value)
|
|
|
373 |
*/
|
|
|
374 |
class Item extends \Eloquent {}
|
|
|
375 |
}
|
|
|
376 |
|
|
|
377 |
namespace App\Models{
|
|
|
378 |
/**
|
|
|
379 |
* App\Models\ItemMedium
|
|
|
380 |
*
|
|
|
381 |
* @property int $id
|
|
|
382 |
* @property int|null $item_id
|
|
|
383 |
* @property int|null $medium_id
|
|
|
384 |
* @property int $rank
|
|
|
385 |
* @property int $similar
|
|
|
386 |
* @property string $created_by
|
|
|
387 |
* @property string $updated_by
|
|
|
388 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
389 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
390 |
* @property-read \App\Models\Medium|null $medium
|
|
|
391 |
* @method static \Database\Factories\ItemMediumFactory factory($count = null, $state = [])
|
|
|
392 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium newModelQuery()
|
|
|
393 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium newQuery()
|
|
|
394 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium query()
|
|
|
395 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereCreatedAt($value)
|
|
|
396 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereCreatedBy($value)
|
|
|
397 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereId($value)
|
|
|
398 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereItemId($value)
|
|
|
399 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereMediumId($value)
|
|
|
400 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereRank($value)
|
|
|
401 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereSimilar($value)
|
|
|
402 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereUpdatedAt($value)
|
|
|
403 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemMedium whereUpdatedBy($value)
|
|
|
404 |
*/
|
|
|
405 |
class ItemMedium extends \Eloquent {}
|
|
|
406 |
}
|
|
|
407 |
|
|
|
408 |
namespace App\Models{
|
|
|
409 |
/**
|
|
|
410 |
* App\Models\ItemTemplate
|
|
|
411 |
*
|
|
|
412 |
* @property int $id
|
|
|
413 |
* @property int|null $template_id
|
|
|
414 |
* @property int|null $item_id
|
|
|
415 |
* @property string $created_by
|
|
|
416 |
* @property string $updated_by
|
|
|
417 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
418 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
419 |
* @method static \Database\Factories\ItemTemplateFactory factory($count = null, $state = [])
|
|
|
420 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate newModelQuery()
|
|
|
421 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate newQuery()
|
|
|
422 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate query()
|
|
|
423 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereCreatedAt($value)
|
|
|
424 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereCreatedBy($value)
|
|
|
425 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereId($value)
|
|
|
426 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereItemId($value)
|
|
|
427 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereTemplateId($value)
|
|
|
428 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereUpdatedAt($value)
|
|
|
429 |
* @method static \Illuminate\Database\Eloquent\Builder|ItemTemplate whereUpdatedBy($value)
|
|
|
430 |
*/
|
|
|
431 |
class ItemTemplate extends \Eloquent {}
|
|
|
432 |
}
|
|
|
433 |
|
|
|
434 |
namespace App\Models{
|
|
|
435 |
/**
|
|
|
436 |
* App\Models\Manufacturer
|
|
|
437 |
*
|
|
|
438 |
* @property int $id
|
|
|
439 |
* @property string $name
|
|
|
440 |
* @property string $headline
|
|
|
441 |
* @property string $description
|
|
|
442 |
* @property string $logo1
|
|
|
443 |
* @property string $logo1_href
|
|
|
444 |
* @property string $logo2
|
|
|
445 |
* @property string $logo2_href
|
|
|
446 |
* @property int $property_1
|
|
|
447 |
* @property int $property_2
|
|
|
448 |
* @property int $property_3
|
|
|
449 |
* @property int $calculation
|
|
|
450 |
* @property string $created_by
|
|
|
451 |
* @property string $updated_by
|
|
|
452 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
453 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
454 |
* @method static \Database\Factories\ManufacturerFactory factory($count = null, $state = [])
|
|
|
455 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer newModelQuery()
|
|
|
456 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer newQuery()
|
|
|
457 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer query()
|
|
|
458 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereCalculation($value)
|
|
|
459 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereCreatedAt($value)
|
|
|
460 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereCreatedBy($value)
|
|
|
461 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereDescription($value)
|
|
|
462 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereHeadline($value)
|
|
|
463 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereId($value)
|
|
|
464 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereLogo1($value)
|
|
|
465 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereLogo1Href($value)
|
|
|
466 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereLogo2($value)
|
|
|
467 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereLogo2Href($value)
|
|
|
468 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereName($value)
|
|
|
469 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereProperty1($value)
|
|
|
470 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereProperty2($value)
|
|
|
471 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereProperty3($value)
|
|
|
472 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereUpdatedAt($value)
|
|
|
473 |
* @method static \Illuminate\Database\Eloquent\Builder|Manufacturer whereUpdatedBy($value)
|
|
|
474 |
*/
|
|
|
475 |
class Manufacturer extends \Eloquent {}
|
|
|
476 |
}
|
|
|
477 |
|
|
|
478 |
namespace App\Models{
|
|
|
479 |
/**
|
|
|
480 |
* App\Models\Medium
|
|
|
481 |
*
|
|
|
482 |
* @property int $id
|
|
|
483 |
* @property string $name
|
|
|
484 |
* @property string $description
|
|
|
485 |
* @property int|null $medium_type_id
|
|
|
486 |
* @property string $folder
|
|
|
487 |
* @property string $created_by
|
|
|
488 |
* @property string $updated_by
|
|
|
489 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
490 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
491 |
* @method static \Database\Factories\MediumFactory factory($count = null, $state = [])
|
|
|
492 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium newModelQuery()
|
|
|
493 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium newQuery()
|
|
|
494 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium query()
|
|
|
495 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereCreatedAt($value)
|
|
|
496 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereCreatedBy($value)
|
|
|
497 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereDescription($value)
|
|
|
498 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereFolder($value)
|
|
|
499 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereId($value)
|
|
|
500 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereMediumTypeId($value)
|
|
|
501 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereName($value)
|
|
|
502 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereUpdatedAt($value)
|
|
|
503 |
* @method static \Illuminate\Database\Eloquent\Builder|Medium whereUpdatedBy($value)
|
|
|
504 |
*/
|
|
|
505 |
class Medium extends \Eloquent {}
|
|
|
506 |
}
|
|
|
507 |
|
|
|
508 |
namespace App\Models{
|
|
|
509 |
/**
|
|
|
510 |
* App\Models\MediumType
|
|
|
511 |
*
|
|
|
512 |
* @method static \Database\Factories\MediumTypeFactory factory($count = null, $state = [])
|
|
|
513 |
* @method static \Illuminate\Database\Eloquent\Builder|MediumType newModelQuery()
|
|
|
514 |
* @method static \Illuminate\Database\Eloquent\Builder|MediumType newQuery()
|
|
|
515 |
* @method static \Illuminate\Database\Eloquent\Builder|MediumType query()
|
|
|
516 |
*/
|
|
|
517 |
class MediumType extends \Eloquent {}
|
|
|
518 |
}
|
|
|
519 |
|
|
|
520 |
namespace App\Models{
|
|
|
521 |
/**
|
|
|
522 |
* App\Models\Module
|
|
|
523 |
*
|
|
|
524 |
* @property int $id
|
|
|
525 |
* @property string $name
|
|
|
526 |
* @property string $interner_name
|
|
|
527 |
* @property int|null $rang
|
|
|
528 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Tool> $tool
|
|
|
529 |
* @property-read int|null $tool_count
|
|
|
530 |
* @method static \Illuminate\Database\Eloquent\Builder|Module newModelQuery()
|
|
|
531 |
* @method static \Illuminate\Database\Eloquent\Builder|Module newQuery()
|
|
|
532 |
* @method static \Illuminate\Database\Eloquent\Builder|Module query()
|
|
|
533 |
* @method static \Illuminate\Database\Eloquent\Builder|Module whereId($value)
|
|
|
534 |
* @method static \Illuminate\Database\Eloquent\Builder|Module whereInternerName($value)
|
|
|
535 |
* @method static \Illuminate\Database\Eloquent\Builder|Module whereName($value)
|
|
|
536 |
* @method static \Illuminate\Database\Eloquent\Builder|Module whereRang($value)
|
|
|
537 |
*/
|
|
|
538 |
class Module extends \Eloquent {}
|
|
|
539 |
}
|
|
|
540 |
|
|
|
541 |
namespace App\Models{
|
|
|
542 |
/**
|
|
|
543 |
* App\Models\Order
|
|
|
544 |
*
|
|
|
545 |
* @property int $id
|
|
|
546 |
* @property int|null $shop_id
|
|
|
547 |
* @property int|null $user_id
|
|
|
548 |
* @property int|null $order_type_id
|
|
|
549 |
* @property int|null $shipping_group_id
|
|
|
550 |
* @property int|null $payment_method_id
|
|
|
551 |
* @property int|null $bill_addr_id
|
|
|
552 |
* @property int|null $ship_addr_id
|
|
|
553 |
* @property int $paid
|
|
|
554 |
* @property string|null $paid_at
|
|
|
555 |
* @property string|null $paid_comment
|
|
|
556 |
* @property string $foreign_id
|
|
|
557 |
* @property string $foreign_payment_id
|
|
|
558 |
* @property string $status
|
|
|
559 |
* @property string $total_amount_buffer
|
|
|
560 |
* @property string $item_status_buffer
|
|
|
561 |
* @property string $invoice_status_buffer
|
|
|
562 |
* @property string $delivery_note_status_buffer
|
|
|
563 |
* @property int $tax
|
|
|
564 |
* @property string $comment
|
|
|
565 |
* @property string $external_comment
|
|
|
566 |
* @property string $note
|
|
|
567 |
* @property string $additional_info
|
|
|
568 |
* @property string $kk_info
|
|
|
569 |
* @property string $created_by
|
|
|
570 |
* @property string $updated_by
|
|
|
571 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
572 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
573 |
* @property-read \App\Models\OrderAddress|null $billAddr
|
|
|
574 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\OrderItem> $orderItem
|
|
|
575 |
* @property-read int|null $order_item_count
|
|
|
576 |
* @property-read \App\Models\OrderType|null $orderType
|
|
|
577 |
* @property-read \App\Models\OrderAddress|null $shipAddr
|
|
|
578 |
* @property-read \App\Models\Shop|null $shop
|
|
|
579 |
* @method static \Database\Factories\OrderFactory factory($count = null, $state = [])
|
|
|
580 |
* @method static \Illuminate\Database\Eloquent\Builder|Order newModelQuery()
|
|
|
581 |
* @method static \Illuminate\Database\Eloquent\Builder|Order newQuery()
|
|
|
582 |
* @method static \Illuminate\Database\Eloquent\Builder|Order query()
|
|
|
583 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereAdditionalInfo($value)
|
|
|
584 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereBillAddrId($value)
|
|
|
585 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereComment($value)
|
|
|
586 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereCreatedAt($value)
|
|
|
587 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereCreatedBy($value)
|
|
|
588 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereDeliveryNoteStatusBuffer($value)
|
|
|
589 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereExternalComment($value)
|
|
|
590 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereForeignId($value)
|
|
|
591 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereForeignPaymentId($value)
|
|
|
592 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereId($value)
|
|
|
593 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereInvoiceStatusBuffer($value)
|
|
|
594 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereItemStatusBuffer($value)
|
|
|
595 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereKkInfo($value)
|
|
|
596 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereNote($value)
|
|
|
597 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereOrderTypeId($value)
|
|
|
598 |
* @method static \Illuminate\Database\Eloquent\Builder|Order wherePaid($value)
|
|
|
599 |
* @method static \Illuminate\Database\Eloquent\Builder|Order wherePaidAt($value)
|
|
|
600 |
* @method static \Illuminate\Database\Eloquent\Builder|Order wherePaidComment($value)
|
|
|
601 |
* @method static \Illuminate\Database\Eloquent\Builder|Order wherePaymentMethodId($value)
|
|
|
602 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereShipAddrId($value)
|
|
|
603 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereShippingGroupId($value)
|
|
|
604 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereShopId($value)
|
|
|
605 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereStatus($value)
|
|
|
606 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereTax($value)
|
|
|
607 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereTotalAmountBuffer($value)
|
|
|
608 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereUpdatedAt($value)
|
|
|
609 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereUpdatedBy($value)
|
|
|
610 |
* @method static \Illuminate\Database\Eloquent\Builder|Order whereUserId($value)
|
|
|
611 |
*/
|
|
|
612 |
class Order extends \Eloquent {}
|
|
|
613 |
}
|
|
|
614 |
|
|
|
615 |
namespace App\Models{
|
|
|
616 |
/**
|
|
|
617 |
* App\Models\OrderAddress
|
|
|
618 |
*
|
|
|
619 |
* @property int $id
|
|
|
620 |
* @property int|null $user_id
|
|
|
621 |
* @property string $salutation
|
|
|
622 |
* @property string $pro_title
|
|
|
623 |
* @property string $name
|
|
|
624 |
* @property string $lastname
|
|
|
625 |
* @property string $company
|
|
|
626 |
* @property string $company2
|
|
|
627 |
* @property string $street
|
|
|
628 |
* @property string $houseno
|
|
|
629 |
* @property string $street2
|
|
|
630 |
* @property string $zip
|
|
|
631 |
* @property string $city
|
|
|
632 |
* @property int|null $country_id
|
|
|
633 |
* @property int|null $state_id
|
|
|
634 |
* @property string $phone
|
|
|
635 |
* @property string $fax
|
|
|
636 |
* @property string $email
|
|
|
637 |
* @property string|null $birthdate
|
|
|
638 |
* @property int $schufa_validierung_age
|
|
|
639 |
* @property string $schufa_result
|
|
|
640 |
* @property string $legal_form
|
|
|
641 |
* @property string $hr_nr
|
|
|
642 |
* @property string $vat_id
|
|
|
643 |
* @property string $vat_free
|
|
|
644 |
* @property string $nettocalculation
|
|
|
645 |
* @property string $comment
|
|
|
646 |
* @property string $created_by
|
|
|
647 |
* @property string $updated_by
|
|
|
648 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
649 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
650 |
* @method static \Database\Factories\OrderAddressFactory factory($count = null, $state = [])
|
|
|
651 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress newModelQuery()
|
|
|
652 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress newQuery()
|
|
|
653 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress query()
|
|
|
654 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereBirthdate($value)
|
|
|
655 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereCity($value)
|
|
|
656 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereComment($value)
|
|
|
657 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereCompany($value)
|
|
|
658 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereCompany2($value)
|
|
|
659 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereCountryId($value)
|
|
|
660 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereCreatedAt($value)
|
|
|
661 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereCreatedBy($value)
|
|
|
662 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereEmail($value)
|
|
|
663 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereFax($value)
|
|
|
664 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereHouseno($value)
|
|
|
665 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereHrNr($value)
|
|
|
666 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereId($value)
|
|
|
667 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereLastname($value)
|
|
|
668 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereLegalForm($value)
|
|
|
669 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereName($value)
|
|
|
670 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereNettocalculation($value)
|
|
|
671 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress wherePhone($value)
|
|
|
672 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereProTitle($value)
|
|
|
673 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereSalutation($value)
|
|
|
674 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereSchufaResult($value)
|
|
|
675 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereSchufaValidierungAge($value)
|
|
|
676 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereStateId($value)
|
|
|
677 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereStreet($value)
|
|
|
678 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereStreet2($value)
|
|
|
679 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereUpdatedAt($value)
|
|
|
680 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereUpdatedBy($value)
|
|
|
681 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereUserId($value)
|
|
|
682 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereVatFree($value)
|
|
|
683 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereVatId($value)
|
|
|
684 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderAddress whereZip($value)
|
|
|
685 |
*/
|
|
|
686 |
class OrderAddress extends \Eloquent {}
|
|
|
687 |
}
|
|
|
688 |
|
|
|
689 |
namespace App\Models{
|
|
|
690 |
/**
|
|
|
691 |
* App\Models\OrderItem
|
|
|
692 |
*
|
|
|
693 |
* @property int $id
|
|
|
694 |
* @property int|null $order_id
|
|
|
695 |
* @property int|null $item_id
|
|
|
696 |
* @property int|null $child_id
|
|
|
697 |
* @property int|null $order_item_id
|
|
|
698 |
* @property string $name
|
|
|
699 |
* @property float $price
|
|
|
700 |
* @property int $amount
|
|
|
701 |
* @property string $status
|
|
|
702 |
* @property string $delivery_status
|
|
|
703 |
* @property string $invoice_status
|
|
|
704 |
* @property string $delivery_note_status
|
|
|
705 |
* @property string $foreign_id
|
|
|
706 |
* @property string $option_input
|
|
|
707 |
* @property string $description
|
|
|
708 |
* @property int $rank
|
|
|
709 |
* @property int $tax
|
|
|
710 |
* @property float $orig_value
|
|
|
711 |
* @property string $orig_currency
|
|
|
712 |
* @property string $hash
|
|
|
713 |
* @property string|null $exported
|
|
|
714 |
* @property string|null $exported_invoice
|
|
|
715 |
* @property string|null $exported_delivery_note
|
|
|
716 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
717 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
718 |
* @property-read \App\Models\Item|null $item
|
|
|
719 |
* @method static \Database\Factories\OrderItemFactory factory($count = null, $state = [])
|
|
|
720 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem newModelQuery()
|
|
|
721 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem newQuery()
|
|
|
722 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem query()
|
|
|
723 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereAmount($value)
|
|
|
724 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereChildId($value)
|
|
|
725 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereCreatedAt($value)
|
|
|
726 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereDeliveryNoteStatus($value)
|
|
|
727 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereDeliveryStatus($value)
|
|
|
728 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereDescription($value)
|
|
|
729 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereExported($value)
|
|
|
730 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereExportedDeliveryNote($value)
|
|
|
731 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereExportedInvoice($value)
|
|
|
732 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereForeignId($value)
|
|
|
733 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereHash($value)
|
|
|
734 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereId($value)
|
|
|
735 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereInvoiceStatus($value)
|
|
|
736 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereItemId($value)
|
|
|
737 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereName($value)
|
|
|
738 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereOptionInput($value)
|
|
|
739 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereOrderId($value)
|
|
|
740 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereOrderItemId($value)
|
|
|
741 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereOrigCurrency($value)
|
|
|
742 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereOrigValue($value)
|
|
|
743 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem wherePrice($value)
|
|
|
744 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereRank($value)
|
|
|
745 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereStatus($value)
|
|
|
746 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereTax($value)
|
|
|
747 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderItem whereUpdatedAt($value)
|
|
|
748 |
*/
|
|
|
749 |
class OrderItem extends \Eloquent {}
|
|
|
750 |
}
|
|
|
751 |
|
|
|
752 |
namespace App\Models{
|
|
|
753 |
/**
|
|
|
754 |
* App\Models\OrderType
|
|
|
755 |
*
|
|
|
756 |
* @property int $id
|
|
|
757 |
* @property string $name
|
|
|
758 |
* @property string $internal_name
|
|
|
759 |
* @property string $short
|
|
|
760 |
* @property int $erfassung
|
|
|
761 |
* @property int $status
|
|
|
762 |
* @property int $rank
|
|
|
763 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
764 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
765 |
* @method static \Database\Factories\OrderTypeFactory factory($count = null, $state = [])
|
|
|
766 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType newModelQuery()
|
|
|
767 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType newQuery()
|
|
|
768 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType query()
|
|
|
769 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereCreatedAt($value)
|
|
|
770 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereErfassung($value)
|
|
|
771 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereId($value)
|
|
|
772 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereInternalName($value)
|
|
|
773 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereName($value)
|
|
|
774 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereRank($value)
|
|
|
775 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereShort($value)
|
|
|
776 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereStatus($value)
|
|
|
777 |
* @method static \Illuminate\Database\Eloquent\Builder|OrderType whereUpdatedAt($value)
|
|
|
778 |
*/
|
|
|
779 |
class OrderType extends \Eloquent {}
|
|
|
780 |
}
|
|
|
781 |
|
|
|
782 |
namespace App\Models{
|
|
|
783 |
/**
|
|
|
784 |
* App\Models\PaymentMethod
|
|
|
785 |
*
|
|
|
786 |
* @property int $id
|
|
|
787 |
* @property string $name
|
|
|
788 |
* @property string $internal_name
|
|
|
789 |
* @property float $discount
|
|
|
790 |
* @property string $info_in_shop
|
|
|
791 |
* @property string $shipping_text
|
|
|
792 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
793 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
794 |
* @method static \Database\Factories\PaymentMethodFactory factory($count = null, $state = [])
|
|
|
795 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod newModelQuery()
|
|
|
796 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod newQuery()
|
|
|
797 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod query()
|
|
|
798 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereCreatedAt($value)
|
|
|
799 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereDiscount($value)
|
|
|
800 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereId($value)
|
|
|
801 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereInfoInShop($value)
|
|
|
802 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereInternalName($value)
|
|
|
803 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereName($value)
|
|
|
804 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereShippingText($value)
|
|
|
805 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentMethod whereUpdatedAt($value)
|
|
|
806 |
*/
|
|
|
807 |
class PaymentMethod extends \Eloquent {}
|
|
|
808 |
}
|
|
|
809 |
|
|
|
810 |
namespace App\Models{
|
|
|
811 |
/**
|
|
|
812 |
* App\Models\PaymentTarget
|
|
|
813 |
*
|
|
|
814 |
* @method static \Database\Factories\PaymentTargetFactory factory($count = null, $state = [])
|
|
|
815 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentTarget newModelQuery()
|
|
|
816 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentTarget newQuery()
|
|
|
817 |
* @method static \Illuminate\Database\Eloquent\Builder|PaymentTarget query()
|
|
|
818 |
*/
|
|
|
819 |
class PaymentTarget extends \Eloquent {}
|
|
|
820 |
}
|
|
|
821 |
|
|
|
822 |
namespace App\Models{
|
|
|
823 |
/**
|
|
|
824 |
* App\Models\Price
|
|
|
825 |
*
|
|
|
826 |
* @property int $id
|
|
|
827 |
* @property int $item_id
|
|
|
828 |
* @property int $preis_index
|
|
|
829 |
* @property float $preis
|
|
|
830 |
* @property string $staffel
|
|
|
831 |
* @property string $created_by
|
|
|
832 |
* @property string $updated_by
|
|
|
833 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
834 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
835 |
* @method static \Database\Factories\PriceFactory factory($count = null, $state = [])
|
|
|
836 |
* @method static \Illuminate\Database\Eloquent\Builder|Price newModelQuery()
|
|
|
837 |
* @method static \Illuminate\Database\Eloquent\Builder|Price newQuery()
|
|
|
838 |
* @method static \Illuminate\Database\Eloquent\Builder|Price query()
|
|
|
839 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereCreatedAt($value)
|
|
|
840 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereCreatedBy($value)
|
|
|
841 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereId($value)
|
|
|
842 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereItemId($value)
|
|
|
843 |
* @method static \Illuminate\Database\Eloquent\Builder|Price wherePreis($value)
|
|
|
844 |
* @method static \Illuminate\Database\Eloquent\Builder|Price wherePreisIndex($value)
|
|
|
845 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereStaffel($value)
|
|
|
846 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereUpdatedAt($value)
|
|
|
847 |
* @method static \Illuminate\Database\Eloquent\Builder|Price whereUpdatedBy($value)
|
|
|
848 |
*/
|
|
|
849 |
class Price extends \Eloquent {}
|
|
|
850 |
}
|
|
|
851 |
|
|
|
852 |
namespace App\Models{
|
|
|
853 |
/**
|
|
|
854 |
* App\Models\PriceAgency
|
|
|
855 |
*
|
|
|
856 |
* @property int $id
|
|
|
857 |
* @property int $shop_id
|
|
|
858 |
* @property string $name
|
|
|
859 |
* @property int $records
|
|
|
860 |
* @property string $logo_url
|
|
|
861 |
* @property string $home_url
|
|
|
862 |
* @property string $csv_url
|
|
|
863 |
* @property string $trigger_url
|
|
|
864 |
* @property string $voting_url
|
|
|
865 |
* @property string $access_url
|
|
|
866 |
* @property string $access_user
|
|
|
867 |
* @property string $access_password
|
|
|
868 |
* @property string $comment
|
|
|
869 |
* @property string $locked_manufacturers
|
|
|
870 |
* @property string $config
|
|
|
871 |
* @property int $status
|
|
|
872 |
* @property int $only_deliverable
|
|
|
873 |
* @property float $min_price
|
|
|
874 |
* @property string|null $last_updated_at
|
|
|
875 |
* @property string|null $last_access_at
|
|
|
876 |
* @property string $last_access_by
|
|
|
877 |
* @property string $created_by
|
|
|
878 |
* @property string $updated_by
|
|
|
879 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
880 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
881 |
* @method static \Database\Factories\PriceAgencyFactory factory($count = null, $state = [])
|
|
|
882 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency newModelQuery()
|
|
|
883 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency newQuery()
|
|
|
884 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency query()
|
|
|
885 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereAccessPassword($value)
|
|
|
886 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereAccessUrl($value)
|
|
|
887 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereAccessUser($value)
|
|
|
888 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereComment($value)
|
|
|
889 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereConfig($value)
|
|
|
890 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereCreatedAt($value)
|
|
|
891 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereCreatedBy($value)
|
|
|
892 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereCsvUrl($value)
|
|
|
893 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereHomeUrl($value)
|
|
|
894 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereId($value)
|
|
|
895 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereLastAccessAt($value)
|
|
|
896 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereLastAccessBy($value)
|
|
|
897 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereLastUpdatedAt($value)
|
|
|
898 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereLockedManufacturers($value)
|
|
|
899 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereLogoUrl($value)
|
|
|
900 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereMinPrice($value)
|
|
|
901 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereName($value)
|
|
|
902 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereOnlyDeliverable($value)
|
|
|
903 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereRecords($value)
|
|
|
904 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereShopId($value)
|
|
|
905 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereStatus($value)
|
|
|
906 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereTriggerUrl($value)
|
|
|
907 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereUpdatedAt($value)
|
|
|
908 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereUpdatedBy($value)
|
|
|
909 |
* @method static \Illuminate\Database\Eloquent\Builder|PriceAgency whereVotingUrl($value)
|
|
|
910 |
*/
|
|
|
911 |
class PriceAgency extends \Eloquent {}
|
|
|
912 |
}
|
|
|
913 |
|
|
|
914 |
namespace App\Models{
|
|
|
915 |
/**
|
|
|
916 |
* App\Models\Property
|
|
|
917 |
*
|
|
|
918 |
* @property int $id
|
|
|
919 |
* @property int|null $tool_id
|
|
|
920 |
* @property string $name
|
|
|
921 |
* @property string $interner_name
|
|
|
922 |
* @property string $beschreibung
|
|
|
923 |
* @property string $hilfetext
|
|
|
924 |
* @property int|null $rang
|
|
|
925 |
* @property string $hidden
|
|
|
926 |
* @property string $quick_edit
|
|
|
927 |
* @property-read \App\Models\Tool|null $Tool
|
|
|
928 |
* @method static \Illuminate\Database\Eloquent\Builder|Property newModelQuery()
|
|
|
929 |
* @method static \Illuminate\Database\Eloquent\Builder|Property newQuery()
|
|
|
930 |
* @method static \Illuminate\Database\Eloquent\Builder|Property query()
|
|
|
931 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereBeschreibung($value)
|
|
|
932 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereHidden($value)
|
|
|
933 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereHilfetext($value)
|
|
|
934 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereId($value)
|
|
|
935 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereInternerName($value)
|
|
|
936 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereName($value)
|
|
|
937 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereQuickEdit($value)
|
|
|
938 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereRang($value)
|
|
|
939 |
* @method static \Illuminate\Database\Eloquent\Builder|Property whereToolId($value)
|
|
|
940 |
*/
|
|
|
941 |
class Property extends \Eloquent {}
|
|
|
942 |
}
|
|
|
943 |
|
|
|
944 |
namespace App\Models{
|
|
|
945 |
/**
|
|
|
946 |
* App\Models\SalesPortal
|
|
|
947 |
*
|
|
|
948 |
* @property int $id
|
|
|
949 |
* @property string $name
|
|
|
950 |
* @property string $template
|
|
|
951 |
* @property int|null $sales_portal_type_id
|
|
|
952 |
* @property string $sku_prefix
|
|
|
953 |
* @property int $price_number
|
|
|
954 |
* @property int $base_price
|
|
|
955 |
* @property float $min_price
|
|
|
956 |
* @property float $max_price
|
|
|
957 |
* @property int $digits
|
|
|
958 |
* @property int $standard_amount
|
|
|
959 |
* @property string $item_url
|
|
|
960 |
* @property string $currency
|
|
|
961 |
* @property string $shipping_state
|
|
|
962 |
* @property string $delivery
|
|
|
963 |
* @property float $shipping_cost
|
|
|
964 |
* @property int $afterbuy
|
|
|
965 |
* @property int $salutation
|
|
|
966 |
* @property string $commit_fields
|
|
|
967 |
* @property string $zip
|
|
|
968 |
* @property string $location
|
|
|
969 |
* @property string $created_by
|
|
|
970 |
* @property string $updated_by
|
|
|
971 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
972 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
973 |
* @method static \Database\Factories\SalesPortalFactory factory($count = null, $state = [])
|
|
|
974 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal newModelQuery()
|
|
|
975 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal newQuery()
|
|
|
976 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal query()
|
|
|
977 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereAfterbuy($value)
|
|
|
978 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereBasePrice($value)
|
|
|
979 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereCommitFields($value)
|
|
|
980 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereCreatedAt($value)
|
|
|
981 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereCreatedBy($value)
|
|
|
982 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereCurrency($value)
|
|
|
983 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereDelivery($value)
|
|
|
984 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereDigits($value)
|
|
|
985 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereId($value)
|
|
|
986 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereItemUrl($value)
|
|
|
987 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereLocation($value)
|
|
|
988 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereMaxPrice($value)
|
|
|
989 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereMinPrice($value)
|
|
|
990 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereName($value)
|
|
|
991 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal wherePriceNumber($value)
|
|
|
992 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereSalesPortalTypeId($value)
|
|
|
993 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereSalutation($value)
|
|
|
994 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereShippingCost($value)
|
|
|
995 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereShippingState($value)
|
|
|
996 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereSkuPrefix($value)
|
|
|
997 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereStandardAmount($value)
|
|
|
998 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereTemplate($value)
|
|
|
999 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereUpdatedAt($value)
|
|
|
1000 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereUpdatedBy($value)
|
|
|
1001 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortal whereZip($value)
|
|
|
1002 |
*/
|
|
|
1003 |
class SalesPortal extends \Eloquent {}
|
|
|
1004 |
}
|
|
|
1005 |
|
|
|
1006 |
namespace App\Models{
|
|
|
1007 |
/**
|
|
|
1008 |
* App\Models\SalesPortalItem
|
|
|
1009 |
*
|
|
|
1010 |
* @property int $id
|
|
|
1011 |
* @property int|null $sales_portal_id
|
|
|
1012 |
* @property int|null $item_id
|
|
|
1013 |
* @property int|null $sales_portal_template_id
|
|
|
1014 |
* @property string $sku
|
|
|
1015 |
* @property string|null $additions
|
|
|
1016 |
* @property string $foreign_item_id
|
|
|
1017 |
* @property string $name
|
|
|
1018 |
* @property int $autochange_name
|
|
|
1019 |
* @property int $name_bold
|
|
|
1020 |
* @property int $highlight
|
|
|
1021 |
* @property string $sub_name
|
|
|
1022 |
* @property string $manufacturer
|
|
|
1023 |
* @property int $autochange_manufacturer
|
|
|
1024 |
* @property string $ean
|
|
|
1025 |
* @property int $autochange_ean
|
|
|
1026 |
* @property string $mpn
|
|
|
1027 |
* @property int $autochange_mpn
|
|
|
1028 |
* @property string $description
|
|
|
1029 |
* @property int $autochange_description
|
|
|
1030 |
* @property string $description_addition
|
|
|
1031 |
* @property int $autochange_description_addition
|
|
|
1032 |
* @property float $price
|
|
|
1033 |
* @property int $autochange_price
|
|
|
1034 |
* @property string $currency
|
|
|
1035 |
* @property int $tax
|
|
|
1036 |
* @property string $price_type
|
|
|
1037 |
* @property float $amount
|
|
|
1038 |
* @property string $carrier
|
|
|
1039 |
* @property float $carrier_cost
|
|
|
1040 |
* @property string|null $start
|
|
|
1041 |
* @property string $duration
|
|
|
1042 |
* @property string $category_1
|
|
|
1043 |
* @property string $category_2
|
|
|
1044 |
* @property string $category_3
|
|
|
1045 |
* @property string $bp1
|
|
|
1046 |
* @property string $bp2
|
|
|
1047 |
* @property string $bp3
|
|
|
1048 |
* @property string $bp4
|
|
|
1049 |
* @property string $bp5
|
|
|
1050 |
* @property string $platin_search_1
|
|
|
1051 |
* @property string $platin_search_2
|
|
|
1052 |
* @property string $platin_search_3
|
|
|
1053 |
* @property string $platin_search_4
|
|
|
1054 |
* @property string $platin_search_5
|
|
|
1055 |
* @property string $search_1
|
|
|
1056 |
* @property string $search_2
|
|
|
1057 |
* @property string $search_3
|
|
|
1058 |
* @property string $search_4
|
|
|
1059 |
* @property string $search_5
|
|
|
1060 |
* @property string $status
|
|
|
1061 |
* @property string $online_status
|
|
|
1062 |
* @property int $delivery_time
|
|
|
1063 |
* @property int $pickup
|
|
|
1064 |
* @property string $last_feedback
|
|
|
1065 |
* @property string $created_by
|
|
|
1066 |
* @property string $updated_by
|
|
|
1067 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1068 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1069 |
* @method static \Database\Factories\SalesPortalItemFactory factory($count = null, $state = [])
|
|
|
1070 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem newModelQuery()
|
|
|
1071 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem newQuery()
|
|
|
1072 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem query()
|
|
|
1073 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAdditions($value)
|
|
|
1074 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAmount($value)
|
|
|
1075 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangeDescription($value)
|
|
|
1076 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangeDescriptionAddition($value)
|
|
|
1077 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangeEan($value)
|
|
|
1078 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangeManufacturer($value)
|
|
|
1079 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangeMpn($value)
|
|
|
1080 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangeName($value)
|
|
|
1081 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereAutochangePrice($value)
|
|
|
1082 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereBp1($value)
|
|
|
1083 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereBp2($value)
|
|
|
1084 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereBp3($value)
|
|
|
1085 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereBp4($value)
|
|
|
1086 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereBp5($value)
|
|
|
1087 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCarrier($value)
|
|
|
1088 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCarrierCost($value)
|
|
|
1089 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCategory1($value)
|
|
|
1090 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCategory2($value)
|
|
|
1091 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCategory3($value)
|
|
|
1092 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCreatedAt($value)
|
|
|
1093 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCreatedBy($value)
|
|
|
1094 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereCurrency($value)
|
|
|
1095 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereDeliveryTime($value)
|
|
|
1096 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereDescription($value)
|
|
|
1097 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereDescriptionAddition($value)
|
|
|
1098 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereDuration($value)
|
|
|
1099 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereEan($value)
|
|
|
1100 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereForeignItemId($value)
|
|
|
1101 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereHighlight($value)
|
|
|
1102 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereId($value)
|
|
|
1103 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereItemId($value)
|
|
|
1104 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereLastFeedback($value)
|
|
|
1105 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereManufacturer($value)
|
|
|
1106 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereMpn($value)
|
|
|
1107 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereName($value)
|
|
|
1108 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereNameBold($value)
|
|
|
1109 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereOnlineStatus($value)
|
|
|
1110 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePickup($value)
|
|
|
1111 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePlatinSearch1($value)
|
|
|
1112 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePlatinSearch2($value)
|
|
|
1113 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePlatinSearch3($value)
|
|
|
1114 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePlatinSearch4($value)
|
|
|
1115 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePlatinSearch5($value)
|
|
|
1116 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePrice($value)
|
|
|
1117 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem wherePriceType($value)
|
|
|
1118 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSalesPortalId($value)
|
|
|
1119 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSalesPortalTemplateId($value)
|
|
|
1120 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSearch1($value)
|
|
|
1121 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSearch2($value)
|
|
|
1122 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSearch3($value)
|
|
|
1123 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSearch4($value)
|
|
|
1124 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSearch5($value)
|
|
|
1125 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSku($value)
|
|
|
1126 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereStart($value)
|
|
|
1127 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereStatus($value)
|
|
|
1128 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereSubName($value)
|
|
|
1129 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereTax($value)
|
|
|
1130 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereUpdatedAt($value)
|
|
|
1131 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalItem whereUpdatedBy($value)
|
|
|
1132 |
*/
|
|
|
1133 |
class SalesPortalItem extends \Eloquent {}
|
|
|
1134 |
}
|
|
|
1135 |
|
|
|
1136 |
namespace App\Models{
|
|
|
1137 |
/**
|
|
|
1138 |
* App\Models\SalesPortalTemplate
|
|
|
1139 |
*
|
|
|
1140 |
* @property int $id
|
|
|
1141 |
* @property int|null $sales_portal_id
|
|
|
1142 |
* @property string $name
|
|
|
1143 |
* @property string $created_by
|
|
|
1144 |
* @property string $updated_by
|
|
|
1145 |
* @property string $content
|
|
|
1146 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1147 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1148 |
* @method static \Database\Factories\SalesPortalTemplateFactory factory($count = null, $state = [])
|
|
|
1149 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate newModelQuery()
|
|
|
1150 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate newQuery()
|
|
|
1151 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate query()
|
|
|
1152 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereContent($value)
|
|
|
1153 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereCreatedAt($value)
|
|
|
1154 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereCreatedBy($value)
|
|
|
1155 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereId($value)
|
|
|
1156 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereName($value)
|
|
|
1157 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereSalesPortalId($value)
|
|
|
1158 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereUpdatedAt($value)
|
|
|
1159 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalTemplate whereUpdatedBy($value)
|
|
|
1160 |
*/
|
|
|
1161 |
class SalesPortalTemplate extends \Eloquent {}
|
|
|
1162 |
}
|
|
|
1163 |
|
|
|
1164 |
namespace App\Models{
|
|
|
1165 |
/**
|
|
|
1166 |
* App\Models\SalesPortalType
|
|
|
1167 |
*
|
|
|
1168 |
* @property int $id
|
|
|
1169 |
* @property string $type
|
|
|
1170 |
* @property string $name
|
|
|
1171 |
* @property int $max_categories
|
|
|
1172 |
* @property int $min_depth_category
|
|
|
1173 |
* @property int $only_end_category
|
|
|
1174 |
* @property int $revokeable
|
|
|
1175 |
* @property string $script
|
|
|
1176 |
* @property string $script_folder
|
|
|
1177 |
* @property string $commit_possibilities
|
|
|
1178 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1179 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1180 |
* @method static \Database\Factories\SalesPortalTypeFactory factory($count = null, $state = [])
|
|
|
1181 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType newModelQuery()
|
|
|
1182 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType newQuery()
|
|
|
1183 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType query()
|
|
|
1184 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereCommitPossibilities($value)
|
|
|
1185 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereCreatedAt($value)
|
|
|
1186 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereId($value)
|
|
|
1187 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereMaxCategories($value)
|
|
|
1188 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereMinDepthCategory($value)
|
|
|
1189 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereName($value)
|
|
|
1190 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereOnlyEndCategory($value)
|
|
|
1191 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereRevokeable($value)
|
|
|
1192 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereScript($value)
|
|
|
1193 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereScriptFolder($value)
|
|
|
1194 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereType($value)
|
|
|
1195 |
* @method static \Illuminate\Database\Eloquent\Builder|SalesPortalType whereUpdatedAt($value)
|
|
|
1196 |
*/
|
|
|
1197 |
class SalesPortalType extends \Eloquent {}
|
|
|
1198 |
}
|
|
|
1199 |
|
|
|
1200 |
namespace App\Models{
|
|
|
1201 |
/**
|
|
|
1202 |
* App\Models\Shipping
|
|
|
1203 |
*
|
|
|
1204 |
* @property int $id
|
|
|
1205 |
* @property int $rank
|
|
|
1206 |
* @property int|null $shipping_group_id
|
|
|
1207 |
* @property string $name
|
|
|
1208 |
* @property string $info_shop
|
|
|
1209 |
* @property string $info_mail
|
|
|
1210 |
* @property string $info_internal
|
|
|
1211 |
* @property int $island_shipping
|
|
|
1212 |
* @property string $additions
|
|
|
1213 |
* @property int $status
|
|
|
1214 |
* @property float $price
|
|
|
1215 |
* @property float $calc_weight_from
|
|
|
1216 |
* @property float $calc_weight_to
|
|
|
1217 |
* @property float $calc_price_from
|
|
|
1218 |
* @property float $calc_price_to
|
|
|
1219 |
* @property int $tax_rate
|
|
|
1220 |
* @property string $conditions
|
|
|
1221 |
* @property string $created_by
|
|
|
1222 |
* @property string $updated_by
|
|
|
1223 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1224 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1225 |
* @method static \Database\Factories\ShippingFactory factory($count = null, $state = [])
|
|
|
1226 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping newModelQuery()
|
|
|
1227 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping newQuery()
|
|
|
1228 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping query()
|
|
|
1229 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereAdditions($value)
|
|
|
1230 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereCalcPriceFrom($value)
|
|
|
1231 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereCalcPriceTo($value)
|
|
|
1232 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereCalcWeightFrom($value)
|
|
|
1233 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereCalcWeightTo($value)
|
|
|
1234 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereConditions($value)
|
|
|
1235 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereCreatedAt($value)
|
|
|
1236 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereCreatedBy($value)
|
|
|
1237 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereId($value)
|
|
|
1238 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereInfoInternal($value)
|
|
|
1239 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereInfoMail($value)
|
|
|
1240 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereInfoShop($value)
|
|
|
1241 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereIslandShipping($value)
|
|
|
1242 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereName($value)
|
|
|
1243 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping wherePrice($value)
|
|
|
1244 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereRank($value)
|
|
|
1245 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereShippingGroupId($value)
|
|
|
1246 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereStatus($value)
|
|
|
1247 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereTaxRate($value)
|
|
|
1248 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereUpdatedAt($value)
|
|
|
1249 |
* @method static \Illuminate\Database\Eloquent\Builder|Shipping whereUpdatedBy($value)
|
|
|
1250 |
*/
|
|
|
1251 |
class Shipping extends \Eloquent {}
|
|
|
1252 |
}
|
|
|
1253 |
|
|
|
1254 |
namespace App\Models{
|
|
|
1255 |
/**
|
|
|
1256 |
* App\Models\ShippingCountry
|
|
|
1257 |
*
|
|
|
1258 |
* @property int $id
|
|
|
1259 |
* @property int|null $shipping_id
|
|
|
1260 |
* @property int|null $country_id
|
|
|
1261 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1262 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1263 |
* @method static \Database\Factories\ShippingCountryFactory factory($count = null, $state = [])
|
|
|
1264 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry newModelQuery()
|
|
|
1265 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry newQuery()
|
|
|
1266 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry query()
|
|
|
1267 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereCountryId($value)
|
|
|
1268 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereCreatedAt($value)
|
|
|
1269 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereId($value)
|
|
|
1270 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereShippingId($value)
|
|
|
1271 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingCountry whereUpdatedAt($value)
|
|
|
1272 |
*/
|
|
|
1273 |
class ShippingCountry extends \Eloquent {}
|
|
|
1274 |
}
|
|
|
1275 |
|
|
|
1276 |
namespace App\Models{
|
|
|
1277 |
/**
|
|
|
1278 |
* App\Models\ShippingGroup
|
|
|
1279 |
*
|
|
|
1280 |
* @property int $id
|
|
|
1281 |
* @property string $name
|
|
|
1282 |
* @property string $conditions
|
|
|
1283 |
* @property string $icon
|
|
|
1284 |
* @property int $rank
|
|
|
1285 |
* @property string $shipping_text
|
|
|
1286 |
* @property string $created_by
|
|
|
1287 |
* @property string $updated_by
|
|
|
1288 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1289 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1290 |
* @method static \Database\Factories\ShippingGroupFactory factory($count = null, $state = [])
|
|
|
1291 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup newModelQuery()
|
|
|
1292 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup newQuery()
|
|
|
1293 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup query()
|
|
|
1294 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereConditions($value)
|
|
|
1295 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereCreatedAt($value)
|
|
|
1296 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereCreatedBy($value)
|
|
|
1297 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereIcon($value)
|
|
|
1298 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereId($value)
|
|
|
1299 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereName($value)
|
|
|
1300 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereRank($value)
|
|
|
1301 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereShippingText($value)
|
|
|
1302 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereUpdatedAt($value)
|
|
|
1303 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingGroup whereUpdatedBy($value)
|
|
|
1304 |
*/
|
|
|
1305 |
class ShippingGroup extends \Eloquent {}
|
|
|
1306 |
}
|
|
|
1307 |
|
|
|
1308 |
namespace App\Models{
|
|
|
1309 |
/**
|
|
|
1310 |
* App\Models\ShippingPaymentMethod
|
|
|
1311 |
*
|
|
|
1312 |
* @property int $id
|
|
|
1313 |
* @property int|null $shipping_id
|
|
|
1314 |
* @property int|null $payment_method_id
|
|
|
1315 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1316 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1317 |
* @method static \Database\Factories\ShippingPaymentMethodFactory factory($count = null, $state = [])
|
|
|
1318 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod newModelQuery()
|
|
|
1319 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod newQuery()
|
|
|
1320 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod query()
|
|
|
1321 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod whereCreatedAt($value)
|
|
|
1322 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod whereId($value)
|
|
|
1323 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod wherePaymentMethodId($value)
|
|
|
1324 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod whereShippingId($value)
|
|
|
1325 |
* @method static \Illuminate\Database\Eloquent\Builder|ShippingPaymentMethod whereUpdatedAt($value)
|
|
|
1326 |
*/
|
|
|
1327 |
class ShippingPaymentMethod extends \Eloquent {}
|
|
|
1328 |
}
|
|
|
1329 |
|
|
|
1330 |
namespace App\Models{
|
|
|
1331 |
/**
|
|
|
1332 |
* App\Models\Shop
|
|
|
1333 |
*
|
|
|
1334 |
* @property int $id
|
|
|
1335 |
* @property string $name
|
|
|
1336 |
* @property string $short
|
|
|
1337 |
* @property string $re_short
|
|
|
1338 |
* @property int $preisindex_ek
|
|
|
1339 |
* @property string $importtool
|
|
|
1340 |
* @property int $ebay
|
|
|
1341 |
* @property int $klonziel
|
|
|
1342 |
* @property string $konroot
|
|
|
1343 |
* @property int $home
|
|
|
1344 |
* @property int $erfassung
|
|
|
1345 |
* @property string $database
|
|
|
1346 |
* @property string $order_db
|
|
|
1347 |
* @property string $mail_server
|
|
|
1348 |
* @property string $mail_user
|
|
|
1349 |
* @property string $mail_password
|
|
|
1350 |
* @property string $domain
|
|
|
1351 |
* @property int $status
|
|
|
1352 |
* @property int $rank
|
|
|
1353 |
* @property string $such_algo
|
|
|
1354 |
* @property int $uses_dump
|
|
|
1355 |
* @property int $plesk
|
|
|
1356 |
* @property string $user
|
|
|
1357 |
* @property string $server
|
|
|
1358 |
* @property string $plesk_key
|
|
|
1359 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1360 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1361 |
* @method static \Database\Factories\ShopFactory factory($count = null, $state = [])
|
|
|
1362 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop newModelQuery()
|
|
|
1363 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop newQuery()
|
|
|
1364 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop query()
|
|
|
1365 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereCreatedAt($value)
|
|
|
1366 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereDatabase($value)
|
|
|
1367 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereDomain($value)
|
|
|
1368 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereEbay($value)
|
|
|
1369 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereErfassung($value)
|
|
|
1370 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereHome($value)
|
|
|
1371 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereId($value)
|
|
|
1372 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereImporttool($value)
|
|
|
1373 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereKlonziel($value)
|
|
|
1374 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereKonroot($value)
|
|
|
1375 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereMailPassword($value)
|
|
|
1376 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereMailServer($value)
|
|
|
1377 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereMailUser($value)
|
|
|
1378 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereName($value)
|
|
|
1379 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereOrderDb($value)
|
|
|
1380 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop wherePlesk($value)
|
|
|
1381 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop wherePleskKey($value)
|
|
|
1382 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop wherePreisindexEk($value)
|
|
|
1383 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereRank($value)
|
|
|
1384 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereReShort($value)
|
|
|
1385 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereServer($value)
|
|
|
1386 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereShort($value)
|
|
|
1387 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereStatus($value)
|
|
|
1388 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereSuchAlgo($value)
|
|
|
1389 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereUpdatedAt($value)
|
|
|
1390 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereUser($value)
|
|
|
1391 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereUsesDump($value)
|
|
|
1392 |
*/
|
|
|
1393 |
class Shop extends \Eloquent {}
|
|
|
1394 |
}
|
|
|
1395 |
|
|
|
1396 |
namespace App\Models{
|
|
|
1397 |
/**
|
|
|
1398 |
* App\Models\Template
|
|
|
1399 |
*
|
|
|
1400 |
* @property int $id
|
|
|
1401 |
* @property int|null $shop_id
|
|
|
1402 |
* @property string $name
|
|
|
1403 |
* @property string $description
|
|
|
1404 |
* @property string $template_key
|
|
|
1405 |
* @property string $template_value
|
|
|
1406 |
* @property string $type
|
|
|
1407 |
* @property string $created_by
|
|
|
1408 |
* @property string $updated_by
|
|
|
1409 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1410 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1411 |
* @method static \Database\Factories\TemplateFactory factory($count = null, $state = [])
|
|
|
1412 |
* @method static \Illuminate\Database\Eloquent\Builder|Template newModelQuery()
|
|
|
1413 |
* @method static \Illuminate\Database\Eloquent\Builder|Template newQuery()
|
|
|
1414 |
* @method static \Illuminate\Database\Eloquent\Builder|Template query()
|
|
|
1415 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereCreatedAt($value)
|
|
|
1416 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereCreatedBy($value)
|
|
|
1417 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereDescription($value)
|
|
|
1418 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereId($value)
|
|
|
1419 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereName($value)
|
|
|
1420 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereShopId($value)
|
|
|
1421 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereTemplateKey($value)
|
|
|
1422 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereTemplateValue($value)
|
|
|
1423 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereType($value)
|
|
|
1424 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereUpdatedAt($value)
|
|
|
1425 |
* @method static \Illuminate\Database\Eloquent\Builder|Template whereUpdatedBy($value)
|
|
|
1426 |
*/
|
|
|
1427 |
class Template extends \Eloquent {}
|
|
|
1428 |
}
|
|
|
1429 |
|
|
|
1430 |
namespace App\Models{
|
|
|
1431 |
/**
|
|
|
1432 |
* App\Models\Tool
|
|
|
1433 |
*
|
|
|
1434 |
* @property int $id
|
|
|
1435 |
* @property int|null $module_id
|
|
|
1436 |
* @property string $name
|
|
|
1437 |
* @property string $button_name
|
|
|
1438 |
* @property string $filename
|
|
|
1439 |
* @property int|null $rang
|
|
|
1440 |
* @property string $hidden
|
|
|
1441 |
* @property-read \App\Models\Module|null $Module
|
|
|
1442 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Property> $Property
|
|
|
1443 |
* @property-read int|null $property_count
|
|
|
1444 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool newModelQuery()
|
|
|
1445 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool newQuery()
|
|
|
1446 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool query()
|
|
|
1447 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereButtonName($value)
|
|
|
1448 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereFilename($value)
|
|
|
1449 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereHidden($value)
|
|
|
1450 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereId($value)
|
|
|
1451 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereModuleId($value)
|
|
|
1452 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereName($value)
|
|
|
1453 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereRang($value)
|
|
|
1454 |
*/
|
|
|
1455 |
class Tool extends \Eloquent {}
|
|
|
1456 |
}
|
|
|
1457 |
|
|
|
1458 |
namespace App\Models{
|
|
|
1459 |
/**
|
|
|
1460 |
* App\Models\User
|
|
|
1461 |
*
|
|
|
1462 |
* @property int $id
|
|
|
1463 |
* @property string $name
|
|
|
1464 |
* @property string $email
|
|
|
1465 |
* @property \Illuminate\Support\Carbon|null $email_verified_at
|
|
|
1466 |
* @property string $password
|
|
|
1467 |
* @property string $remember_token
|
|
|
1468 |
* @property string $created_by
|
|
|
1469 |
* @property string $updated_by
|
|
|
1470 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1471 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1472 |
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection<int, \Illuminate\Notifications\DatabaseNotification> $notifications
|
|
|
1473 |
* @property-read int|null $notifications_count
|
|
|
1474 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \Laravel\Sanctum\PersonalAccessToken> $tokens
|
|
|
1475 |
* @property-read int|null $tokens_count
|
|
|
1476 |
* @method static \Database\Factories\UserFactory factory($count = null, $state = [])
|
|
|
1477 |
* @method static \Illuminate\Database\Eloquent\Builder|User newModelQuery()
|
|
|
1478 |
* @method static \Illuminate\Database\Eloquent\Builder|User newQuery()
|
|
|
1479 |
* @method static \Illuminate\Database\Eloquent\Builder|User query()
|
|
|
1480 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedAt($value)
|
|
|
1481 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereCreatedBy($value)
|
|
|
1482 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmail($value)
|
|
|
1483 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereEmailVerifiedAt($value)
|
|
|
1484 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereId($value)
|
|
|
1485 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereName($value)
|
|
|
1486 |
* @method static \Illuminate\Database\Eloquent\Builder|User wherePassword($value)
|
|
|
1487 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereRememberToken($value)
|
|
|
1488 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedAt($value)
|
|
|
1489 |
* @method static \Illuminate\Database\Eloquent\Builder|User whereUpdatedBy($value)
|
|
|
1490 |
*/
|
|
|
1491 |
class User extends \Eloquent {}
|
|
|
1492 |
}
|
|
|
1493 |
|
|
|
1494 |
namespace App\Models{
|
|
|
1495 |
/**
|
|
|
1496 |
* App\Models\UserProperty
|
|
|
1497 |
*
|
|
|
1498 |
* @method static \Illuminate\Database\Eloquent\Builder|UserProperty newModelQuery()
|
|
|
1499 |
* @method static \Illuminate\Database\Eloquent\Builder|UserProperty newQuery()
|
|
|
1500 |
* @method static \Illuminate\Database\Eloquent\Builder|UserProperty query()
|
|
|
1501 |
*/
|
|
|
1502 |
class UserProperty extends \Eloquent {}
|
|
|
1503 |
}
|
|
|
1504 |
|
|
|
1505 |
namespace App\Models{
|
|
|
1506 |
/**
|
|
|
1507 |
* App\Models\Web
|
|
|
1508 |
*
|
|
|
1509 |
* @property int $ID
|
|
|
1510 |
* @property string|null $kunde
|
|
|
1511 |
* @property string|null $datenbank
|
|
|
1512 |
* @property string|null $db_server
|
|
|
1513 |
* @property string|null $db_username
|
|
|
1514 |
* @property string|null $db_password
|
|
|
1515 |
* @property string|null $domain
|
|
|
1516 |
* @property string|null $domain_logo
|
|
|
1517 |
* @property string|null $kunde_bezeichnung
|
|
|
1518 |
* @property string|null $kunde_begruessung
|
|
|
1519 |
* @property string|null $bgcolor_seite
|
|
|
1520 |
* @property string|null $bgcolor_links
|
|
|
1521 |
* @property string|null $bgcolor_rechts
|
|
|
1522 |
* @property string|null $font_color_rechts
|
|
|
1523 |
* @property string|null $font_color_links
|
|
|
1524 |
* @property string|null $font_color_seite
|
|
|
1525 |
* @property string|null $hintergrundbild
|
|
|
1526 |
* @property string|null $verzeichnis
|
|
|
1527 |
* @property string $dok_domain
|
|
|
1528 |
* @property int|null $max_artikel
|
|
|
1529 |
* @property int $mails_per_minute
|
|
|
1530 |
* @property int|null $max_Aktionsartikel
|
|
|
1531 |
* @property string|null $Shop_tree_Breite
|
|
|
1532 |
* @property string|null $FTP_server
|
|
|
1533 |
* @property string|null $FTP_user
|
|
|
1534 |
* @property string|null $FTP_passwd
|
|
|
1535 |
* @property int|null $FTP_passiv
|
|
|
1536 |
* @property int $use_ssl
|
|
|
1537 |
* @property int $ssh_port
|
|
|
1538 |
* @property string $system_copyright
|
|
|
1539 |
* @property string $remoteHosts
|
|
|
1540 |
* @property string $erstellt_am
|
|
|
1541 |
* @property string|null $erstellt_von
|
|
|
1542 |
* @property string $letzte_Aenderung_am
|
|
|
1543 |
* @property string|null $letzte_Aenderung_von
|
|
|
1544 |
* @method static \Illuminate\Database\Eloquent\Builder|Web newModelQuery()
|
|
|
1545 |
* @method static \Illuminate\Database\Eloquent\Builder|Web newQuery()
|
|
|
1546 |
* @method static \Illuminate\Database\Eloquent\Builder|Web query()
|
|
|
1547 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereBgcolorLinks($value)
|
|
|
1548 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereBgcolorRechts($value)
|
|
|
1549 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereBgcolorSeite($value)
|
|
|
1550 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDatenbank($value)
|
|
|
1551 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDbPassword($value)
|
|
|
1552 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDbServer($value)
|
|
|
1553 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDbUsername($value)
|
|
|
1554 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDokDomain($value)
|
|
|
1555 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDomain($value)
|
|
|
1556 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereDomainLogo($value)
|
|
|
1557 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereErstelltAm($value)
|
|
|
1558 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereErstelltVon($value)
|
|
|
1559 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFTPPassiv($value)
|
|
|
1560 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFTPPasswd($value)
|
|
|
1561 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFTPServer($value)
|
|
|
1562 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFTPUser($value)
|
|
|
1563 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFontColorLinks($value)
|
|
|
1564 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFontColorRechts($value)
|
|
|
1565 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereFontColorSeite($value)
|
|
|
1566 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereHintergrundbild($value)
|
|
|
1567 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereID($value)
|
|
|
1568 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereKunde($value)
|
|
|
1569 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereKundeBegruessung($value)
|
|
|
1570 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereKundeBezeichnung($value)
|
|
|
1571 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereLetzteAenderungAm($value)
|
|
|
1572 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereLetzteAenderungVon($value)
|
|
|
1573 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereMailsPerMinute($value)
|
|
|
1574 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereMaxAktionsartikel($value)
|
|
|
1575 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereMaxArtikel($value)
|
|
|
1576 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereRemoteHosts($value)
|
|
|
1577 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereShopTreeBreite($value)
|
|
|
1578 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereSshPort($value)
|
|
|
1579 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereSystemCopyright($value)
|
|
|
1580 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereUseSsl($value)
|
|
|
1581 |
* @method static \Illuminate\Database\Eloquent\Builder|Web whereVerzeichnis($value)
|
|
|
1582 |
*/
|
|
|
1583 |
class Web extends \Eloquent {}
|
|
|
1584 |
}
|
|
|
1585 |
|
|
|
1586 |
namespace App\Models{
|
|
|
1587 |
/**
|
|
|
1588 |
* App\Models\WebProperty
|
|
|
1589 |
*
|
|
|
1590 |
* @property int $ID
|
|
|
1591 |
* @property int $web_id
|
|
|
1592 |
* @property int $property_id
|
|
|
1593 |
* @property string $Bezeichnung
|
|
|
1594 |
* @property-read \App\Models\Property $Property
|
|
|
1595 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty newModelQuery()
|
|
|
1596 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty newQuery()
|
|
|
1597 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty query()
|
|
|
1598 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty whereBezeichnung($value)
|
|
|
1599 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty whereID($value)
|
|
|
1600 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty wherePropertyId($value)
|
|
|
1601 |
* @method static \Illuminate\Database\Eloquent\Builder|WebProperty whereWebId($value)
|
|
|
1602 |
*/
|
|
|
1603 |
class WebProperty extends \Eloquent {}
|
|
|
1604 |
}
|
|
|
1605 |
|
|
|
1606 |
namespace App\Models{
|
|
|
1607 |
/**
|
|
|
1608 |
* App\Models\WebSetting
|
|
|
1609 |
*
|
|
|
1610 |
* @property int $id
|
|
|
1611 |
* @property int $shop_id
|
|
|
1612 |
* @property int $order_type_id
|
|
|
1613 |
* @property int $rank
|
|
|
1614 |
* @property string $name
|
|
|
1615 |
* @property string $type
|
|
|
1616 |
* @property string $content
|
|
|
1617 |
* @property string $fallback
|
|
|
1618 |
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
1619 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
1620 |
* @method static \Database\Factories\WebSettingFactory factory($count = null, $state = [])
|
|
|
1621 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting newModelQuery()
|
|
|
1622 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting newQuery()
|
|
|
1623 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting query()
|
|
|
1624 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereContent($value)
|
|
|
1625 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereCreatedAt($value)
|
|
|
1626 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereFallback($value)
|
|
|
1627 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereId($value)
|
|
|
1628 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereName($value)
|
|
|
1629 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereOrderTypeId($value)
|
|
|
1630 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereRank($value)
|
|
|
1631 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereShopId($value)
|
|
|
1632 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereType($value)
|
|
|
1633 |
* @method static \Illuminate\Database\Eloquent\Builder|WebSetting whereUpdatedAt($value)
|
|
|
1634 |
*/
|
|
|
1635 |
class WebSetting extends \Eloquent {}
|
|
|
1636 |
}
|
|
|
1637 |
|