You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

33 lines
1.3 KiB

<?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 = [''];
}