13 lines
304 B
PHP
13 lines
304 B
PHP
<?php
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Webkul\Core\Contracts\CountryTranslation as CountryTranslationContract;
|
|
|
|
class CountryTranslation extends Model implements CountryTranslationContract
|
|
{
|
|
public $timestamps = false;
|
|
|
|
protected $fillable = ['name'];
|
|
} |