2018-10-12 12:54:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
|
|
2020-01-08 13:29:36 +00:00
|
|
|
use Webkul\Core\Eloquent\TranslatableModel;
|
2019-02-18 07:30:40 +00:00
|
|
|
use Webkul\Core\Contracts\CountryState as CountryStateContract;
|
2018-10-12 12:54:10 +00:00
|
|
|
|
2019-02-18 07:30:40 +00:00
|
|
|
|
2020-01-08 13:29:36 +00:00
|
|
|
class CountryState extends TranslatableModel implements CountryStateContract
|
2018-10-12 12:54:10 +00:00
|
|
|
{
|
2020-01-08 13:29:36 +00:00
|
|
|
public $translatedAttributes = ['name'];
|
|
|
|
|
|
2018-10-12 12:54:10 +00:00
|
|
|
public $timestamps = false;
|
|
|
|
|
}
|