| Zeile 4... |
Zeile 4... |
| 4 |
|
4 |
|
| 5 |
use Illuminate\Database\Eloquent\Model;
|
5 |
use Illuminate\Database\Eloquent\Model;
|
| 6 |
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
6 |
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
| Zeile -... |
Zeile 7... |
| - |
|
7 |
use Illuminate\Database\Eloquent\Relations\HasMany;
|
| - |
|
8 |
|
| - |
|
9 |
/**
|
| - |
|
10 |
* App\Models\Tool
|
| - |
|
11 |
*
|
| - |
|
12 |
* @property int $id
|
| - |
|
13 |
* @property int|null $module_id
|
| - |
|
14 |
* @property string $name
|
| - |
|
15 |
* @property string $button_name
|
| - |
|
16 |
* @property string $filename
|
| - |
|
17 |
* @property int|null $rang
|
| - |
|
18 |
* @property string $hidden
|
| - |
|
19 |
* @property-read \App\Models\Module|null $Module
|
| - |
|
20 |
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Property> $Property
|
| - |
|
21 |
* @property-read int|null $property_count
|
| - |
|
22 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool newModelQuery()
|
| - |
|
23 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool newQuery()
|
| - |
|
24 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool query()
|
| - |
|
25 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereButtonName($value)
|
| - |
|
26 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereFilename($value)
|
| - |
|
27 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereHidden($value)
|
| - |
|
28 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereId($value)
|
| - |
|
29 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereModuleId($value)
|
| - |
|
30 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereName($value)
|
| - |
|
31 |
* @method static \Illuminate\Database\Eloquent\Builder|Tool whereRang($value)
|
| 7 |
use Illuminate\Database\Eloquent\Relations\HasMany;
|
32 |
* @mixin \Eloquent
|
| 8 |
|
33 |
*/
|
| 9 |
class Tool extends Model
|
34 |
class Tool extends Model
|
| Zeile 10... |
Zeile 35... |
| 10 |
{
|
35 |
{
|
| 11 |
protected $connection = "cms";
|
36 |
protected $connection = "cms";
|