This repository was archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_ide_helper_models.php
More file actions
142 lines (134 loc) · 6.34 KB
/
_ide_helper_models.php
File metadata and controls
142 lines (134 loc) · 6.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
// @formatter:off
/**
* A helper file for your Eloquent Models
* Copy the phpDocs from this file to the correct Model,
* And remove them from this file, to prevent double declarations.
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
*/
namespace App{
/**
* App\Anime
*
* @property string $id
* @property string $judul
* @property string|null $judul_alt
* @property string $tahun
* @property string $jenis
* @property float $skor
* @property string $sinopsis
* @property string $musim
* @property string $user_post_id
* @property string|null $user_edit_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Gambar $gambar
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Genre[] $genres
* @property-read int|null $genres_count
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereJenis($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereJudul($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereJudulAlt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereMusim($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereSinopsis($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereSkor($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereTahun($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereUserEditId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Anime whereUserPostId($value)
*/
class Anime extends \Eloquent {}
}
namespace App{
/**
* App\Gambar
*
* @property int $id
* @property string $nama
* @property string $dimensions
* @property string $lokasi
* @property string $anime_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Anime $anime
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereAnimeId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereDimensions($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereLokasi($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereNama($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Gambar whereUpdatedAt($value)
*/
class Gambar extends \Eloquent {}
}
namespace App{
/**
* App\Genre
*
* @property string $genre
* @property string $anime_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \App\Anime $anime
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre whereAnimeId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre whereGenre($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\Genre whereUpdatedAt($value)
*/
class Genre extends \Eloquent {}
}
namespace App{
/**
* App\GenreList
*
* @property string $genre
* @property string $name
* @method static \Illuminate\Database\Eloquent\Builder|\App\GenreList newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\GenreList newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\GenreList query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\GenreList whereGenre($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\GenreList whereName($value)
*/
class GenreList extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property int $id
* @property string $name
* @property string $email
* @property int|null $is_admin
* @property \Illuminate\Support\Carbon|null $email_verified_at
* @property string $password
* @property string|null $remember_token
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read int|null $notifications_count
* @method static \Illuminate\Database\Eloquent\Builder|\App\User newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\User newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\User query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmail($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereEmailVerifiedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereIsAdmin($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User wherePassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereRememberToken($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}