mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
Update Laravel to 7.0
This commit is contained in:
@@ -4,6 +4,33 @@ namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* App\Picture
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $url
|
||||
* @property string $title
|
||||
* @property string $desc
|
||||
* @property int $pictureable_id
|
||||
* @property string $pictureable_type
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Log[] $logs
|
||||
* @property-read int|null $logs_count
|
||||
* @property-read \Illuminate\Database\Eloquent\Model|\Eloquent $pictureable
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture whereDesc($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture wherePictureableId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture wherePictureableType($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture whereTitle($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture whereUpdatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Picture whereUrl($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Picture extends Model
|
||||
{
|
||||
public function pictureable()
|
||||
|
||||
Reference in New Issue
Block a user