Google2Fa ready to upload

This commit is contained in:
Kevin Adametz 2021-11-09 18:38:44 +01:00
parent e3495be8b8
commit 73e38a006e
127 changed files with 2637 additions and 589 deletions

View file

@ -11,7 +11,7 @@ use Illuminate\Database\Eloquent\Model;
/**
* Class TravelPlace
*
*
* @property int $id
* @property string $name
* @property string $description
@ -21,10 +21,21 @@ use Illuminate\Database\Eloquent\Model;
* @property bool $active
* @property Carbon $created_at
* @property Carbon $updated_at
*
* @property TravelCountry $travel_country
*
* @package App\Models
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace query()
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereActive($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereDescription($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereLatitude($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereLongitude($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereName($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereTravelCountryId($value)
* @method static \Illuminate\Database\Eloquent\Builder|TravelPlace whereUpdatedAt($value)
* @mixin \Eloquent
*/
class TravelPlace extends Model
{