mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
Update Laravel to 7.0
This commit is contained in:
@@ -5,6 +5,38 @@ namespace App;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use App\Item;
|
||||
|
||||
/**
|
||||
* App\Schedule
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $date
|
||||
* @property string $type
|
||||
* @property string $n1_p1_item
|
||||
* @property string $n1_p2_item
|
||||
* @property string $n2_p1_item
|
||||
* @property string $n2_p2_item
|
||||
* @property string $n3_p1_item
|
||||
* @property string $n3_p2_item
|
||||
* @property array $data
|
||||
* @property \Illuminate\Support\Carbon|null $created_at
|
||||
* @property \Illuminate\Support\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereData($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereN1P1Item($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereN1P2Item($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereN2P1Item($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereN2P2Item($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereN3P1Item($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereN3P2Item($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereType($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Schedule whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Schedule extends Model
|
||||
{
|
||||
protected $casts = [
|
||||
|
||||
Reference in New Issue
Block a user