|
|
<?php
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
/**
|
|
|
* App\GooglePhoto
|
|
|
*
|
|
|
* @property int $id
|
|
|
* @property string $photo_id
|
|
|
* @property string $filename
|
|
|
* @property string $product_url
|
|
|
* @property string $creation_time
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto newModelQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto newQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto query()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto whereCreatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto whereCreationTime($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto whereFilename($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto whereId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto wherePhotoId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto whereProductUrl($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|GooglePhoto whereUpdatedAt($value)
|
|
|
* @mixin \Eloquent
|
|
|
*/
|
|
|
class GooglePhoto extends Model
|
|
|
{
|
|
|
//
|
|
|
protected $guarded = [''];
|
|
|
}
|