Meta.php 442 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/6/6
  6. * Time: 15:32
  7. */
  8. namespace App\Models;
  9. use Illuminate\Database\Eloquent\Model;
  10. use Illuminate\Database\Eloquent\SoftDeletes;
  11. class Meta extends Model
  12. {
  13. use SoftDeletes;
  14. //
  15. protected $table = 'meta';
  16. protected $guarded = [];
  17. public function serializeNum()
  18. {
  19. return $this->hasOne('App\Models\Serialize', 'serialize', 'id');
  20. }
  21. }