2020-01-08 13:29:36 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Webkul\Core\Contracts\CountryStateTranslation as CountryStateTranslationContract;
|
|
|
|
|
|
|
|
|
|
class CountryStateTranslation extends Model implements CountryStateTranslationContract
|
|
|
|
|
{
|
|
|
|
|
public $timestamps = false;
|
|
|
|
|
|
2020-01-29 07:21:12 +00:00
|
|
|
protected $fillable = ['default_name'];
|
2020-01-08 13:29:36 +00:00
|
|
|
}
|