-
Notifications
You must be signed in to change notification settings - Fork 1
/
_ide_helper_models.php
202 lines (193 loc) · 8.61 KB
/
_ide_helper_models.php
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
/**
* 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\Booking
*
* @property int $id
* @property string $user_id
* @property int $offer_id
* @property int $pax
* @property \Carbon\Carbon $deleted_at
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property-read \App\Offer $offer
* @property-read \App\Review $review
* @property-read \App\User $user
* @method static \Illuminate\Database\Query\Builder|\App\Booking active()
* @method static \Illuminate\Database\Query\Builder|\App\Booking whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Booking whereDeletedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Booking whereId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Booking whereOfferId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Booking wherePax($value)
* @method static \Illuminate\Database\Query\Builder|\App\Booking whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Booking whereUserId($value)
*/
class Booking extends \Eloquent {}
}
namespace App{
/**
* App\Device
*
* @property int $id
* @property string $user_id
* @property string $platform
* @property string $device_token
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property-read \App\User $user
* @method static \Illuminate\Database\Query\Builder|\App\Device whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Device whereDeviceToken($value)
* @method static \Illuminate\Database\Query\Builder|\App\Device whereId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Device wherePlatform($value)
* @method static \Illuminate\Database\Query\Builder|\App\Device whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Device whereUserId($value)
*/
class Device extends \Eloquent {}
}
namespace App{
/**
* App\Offer
*
* @property int $id
* @property string $user_id
* @property string $meetup_time
* @property string $start_name
* @property string $start_addr
* @property float $start_lat
* @property float $start_lng
* @property string $start_geohash
* @property string $end_name
* @property string $end_addr
* @property float $end_lat
* @property float $end_lng
* @property string $end_geohash
* @property int $vacancy
* @property int $status
* @property string $pref_gender
* @property string $remarks
* @property string $vehicle_number
* @property string $vehicle_desc
* @property string $vehicle_model
* @property \Carbon\Carbon $deleted_at
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Booking[] $bookings
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Review[] $reviews
* @property-read \App\User $user
* @method static \Illuminate\Database\Query\Builder|\App\Offer active()
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereDeletedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereEndAddr($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereEndGeohash($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereEndLat($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereEndLng($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereEndName($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereMeetupTime($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer wherePrefGender($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereRemarks($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereStartAddr($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereStartGeohash($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereStartLat($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereStartLng($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereStartName($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereStatus($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereUserId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereVacancy($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereVehicleDesc($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereVehicleModel($value)
* @method static \Illuminate\Database\Query\Builder|\App\Offer whereVehicleNumber($value)
*/
class Offer extends \Eloquent {}
}
namespace App{
/**
* App\Report
*
*/
class Report extends \Eloquent {}
}
namespace App{
/**
* App\Review
*
* @property int $id
* @property string $reviewer_id
* @property string $user_id
* @property int $offer_id
* @property int $booking_id
* @property string $body
* @property int $rating
* @property \Carbon\Carbon $deleted_at
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property-read \App\Booking $booking
* @property-read \App\Offer $offer
* @property-read \App\User $user
* @method static \Illuminate\Database\Query\Builder|\App\Review whereBody($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereBookingId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereDeletedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereOfferId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereRating($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereReviewerId($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereUpdatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\Review whereUserId($value)
*/
class Review extends \Eloquent {}
}
namespace App{
/**
* App\Role
*
*/
class Role extends \Eloquent {}
}
namespace App{
/**
* App\User
*
* @property string $id
* @property string $name
* @property string $email
* @property string $password
* @property string $dp
* @property string $facebook_id
* @property string $google_id
* @property string $gender
* @property int $exp
* @property string $timezone
* @property string $remember_token
* @property \Carbon\Carbon $created_at
* @property \Carbon\Carbon $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Booking[] $bookings
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Device[] $devices
* @property-read \Illuminate\Notifications\DatabaseNotificationCollection|\Illuminate\Notifications\DatabaseNotification[] $notifications
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Offer[] $offers
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Review[] $reviews
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Role[] $roles
* @method static \Illuminate\Database\Query\Builder|\App\User whereCreatedAt($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereDp($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereEmail($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereExp($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereFacebookId($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereGender($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereGoogleId($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereId($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereName($value)
* @method static \Illuminate\Database\Query\Builder|\App\User wherePassword($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereRememberToken($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereTimezone($value)
* @method static \Illuminate\Database\Query\Builder|\App\User whereUpdatedAt($value)
*/
class User extends \Eloquent {}
}