13 lines
332 B
PHP
13 lines
332 B
PHP
<?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;
|
|
|
|
protected $fillable = ['default_name'];
|
|
} |