25 lines
992 B
PHP
25 lines
992 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models;
|
||
|
|
|
||
|
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
|
||
|
|
class ShareImgLog extends Model
|
||
|
|
{
|
||
|
|
protected $fillable = [];
|
||
|
|
protected $guarded = [];
|
||
|
|
|
||
|
|
public const CHRISTMAS = "https://images.ufutx.com/202012/30/123.jpeg";
|
||
|
|
public const NEWYEAR = "https://images.ufutx.com/202012/30/12345.jpeg";
|
||
|
|
public const WOMENDAY = "https://images.ufutx.com/202103/08/e006ef109d400e619ecd99cba7aadf14.png";
|
||
|
|
public const FULINK = "https://images.ufutx.com/202103/09/82f7bf4a25f633fcde4502009d4ebf88.png";
|
||
|
|
public const WHITEDAY = "https://images.ufutx.com/202103/12/0f74f634222facccaae900beed20a142.png";
|
||
|
|
public const SINGLETRIP = "https://images.ufutx.com/202104/30/eff01d5faa7fae2286f9bf1a73db9996.png";
|
||
|
|
public const CHRISTMASTYPE = 'christmas';
|
||
|
|
public const NEWYEARTYPE ="newyear";
|
||
|
|
public const WOMENDAYTYPE ="womenday";
|
||
|
|
public const FULINKTYPE ="fulink";
|
||
|
|
public const WHITEDAYTYPE ="whiteday";
|
||
|
|
public const SINGLETRIPTYPE ="single_trip";
|
||
|
|
}
|