您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
xshop/app/Models/City.php

20 行
400 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Spatie\Translatable\HasTranslations;
class City extends Model
{
use HasTranslations,SoftDeletes;
public $translatable = ['name'];
public function state(){
return $this->belongsTo(State::class);
}
}