Update (all): fix php formatting using laravel pint, fix blade using shufo

This commit is contained in:
2023-07-25 22:18:01 +08:00
parent 6adc27076d
commit 82353c1ecd
37 changed files with 536 additions and 480 deletions

View File

@@ -12,7 +12,7 @@
/**
* Class CountryLocale
*
*
* @property int $id
* @property string $name
* @property string $slug
@@ -21,22 +21,21 @@
* @property string|null $deleted_at
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
*
* @package App\Models
*/
class CountryLocale extends Model
{
use SoftDeletes;
protected $table = 'country_locales';
use SoftDeletes;
protected $casts = [
'enabled' => 'bool'
];
protected $table = 'country_locales';
protected $fillable = [
'name',
'slug',
'i18n',
'enabled'
];
protected $casts = [
'enabled' => 'bool',
];
protected $fillable = [
'name',
'slug',
'i18n',
'enabled',
];
}