2018-10-12 12:54:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
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
|
|
|
|
|
|
|
|
class CountryState extends Model implements CountryStateContract
|
2018-10-12 12:54:10 +00:00
|
|
|
{
|
|
|
|
|
public $timestamps = false;
|
|
|
|
|
}
|