12345678910111213141516171819202122232425 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Administrator
- * Date: 2019/6/6
- * Time: 15:32
- */
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class Meta extends Model
- {
- use SoftDeletes;
- //
- protected $table = 'meta';
- protected $guarded = [];
- public function serializeNum()
- {
- return $this->hasOne('App\Models\Serialize', 'serialize', 'id');
- }
- }
|