| Zeile 3... |
Zeile 3... |
| 3 |
namespace App\Models;
|
3 |
namespace App\Models;
|
| Zeile 4... |
Zeile 4... |
| 4 |
|
4 |
|
| 5 |
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
5 |
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
| Zeile -... |
Zeile 6... |
| - |
|
6 |
use Illuminate\Database\Eloquent\Model;
|
| - |
|
7 |
|
| - |
|
8 |
/**
|
| - |
|
9 |
* App\Models\Shop
|
| - |
|
10 |
*
|
| - |
|
11 |
* @property int $id
|
| - |
|
12 |
* @property string $name
|
| - |
|
13 |
* @property string $short
|
| - |
|
14 |
* @property string $re_short
|
| - |
|
15 |
* @property int $preisindex_ek
|
| - |
|
16 |
* @property string $importtool
|
| - |
|
17 |
* @property int $ebay
|
| - |
|
18 |
* @property int $klonziel
|
| - |
|
19 |
* @property string $konroot
|
| - |
|
20 |
* @property int $home
|
| - |
|
21 |
* @property int $erfassung
|
| - |
|
22 |
* @property string $database
|
| - |
|
23 |
* @property string $order_db
|
| - |
|
24 |
* @property string $mail_server
|
| - |
|
25 |
* @property string $mail_user
|
| - |
|
26 |
* @property string $mail_password
|
| - |
|
27 |
* @property string $domain
|
| - |
|
28 |
* @property int $status
|
| - |
|
29 |
* @property int $rank
|
| - |
|
30 |
* @property string $such_algo
|
| - |
|
31 |
* @property int $uses_dump
|
| - |
|
32 |
* @property int $plesk
|
| - |
|
33 |
* @property string $user
|
| - |
|
34 |
* @property string $server
|
| - |
|
35 |
* @property string $plesk_key
|
| - |
|
36 |
* @property \Illuminate\Support\Carbon|null $created_at
|
| - |
|
37 |
* @property \Illuminate\Support\Carbon|null $updated_at
|
| - |
|
38 |
* @method static \Database\Factories\ShopFactory factory($count = null, $state = [])
|
| - |
|
39 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop newModelQuery()
|
| - |
|
40 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop newQuery()
|
| - |
|
41 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop query()
|
| - |
|
42 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereCreatedAt($value)
|
| - |
|
43 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereDatabase($value)
|
| - |
|
44 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereDomain($value)
|
| - |
|
45 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereEbay($value)
|
| - |
|
46 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereErfassung($value)
|
| - |
|
47 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereHome($value)
|
| - |
|
48 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereId($value)
|
| - |
|
49 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereImporttool($value)
|
| - |
|
50 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereKlonziel($value)
|
| - |
|
51 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereKonroot($value)
|
| - |
|
52 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereMailPassword($value)
|
| - |
|
53 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereMailServer($value)
|
| - |
|
54 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereMailUser($value)
|
| - |
|
55 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereName($value)
|
| - |
|
56 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereOrderDb($value)
|
| - |
|
57 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop wherePlesk($value)
|
| - |
|
58 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop wherePleskKey($value)
|
| - |
|
59 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop wherePreisindexEk($value)
|
| - |
|
60 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereRank($value)
|
| - |
|
61 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereReShort($value)
|
| - |
|
62 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereServer($value)
|
| - |
|
63 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereShort($value)
|
| - |
|
64 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereStatus($value)
|
| - |
|
65 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereSuchAlgo($value)
|
| - |
|
66 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereUpdatedAt($value)
|
| - |
|
67 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereUser($value)
|
| - |
|
68 |
* @method static \Illuminate\Database\Eloquent\Builder|Shop whereUsesDump($value)
|
| 6 |
use Illuminate\Database\Eloquent\Model;
|
69 |
* @mixin \Eloquent
|
| 7 |
|
70 |
*/
|
| 8 |
class Shop extends Model
|
71 |
class Shop extends Model
|
| 9 |
{
|
72 |
{
|