Add comments to address model.

This commit is contained in:
2024-12-10 21:17:20 +01:00
parent 679a067506
commit 4098fb151a

View File

@@ -9,6 +9,11 @@ class Address extends Model
{
use SoftDeletes;
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'is_address',
'is_delivery',
@@ -20,8 +25,5 @@ class Address extends Model
'state',
'country',
'zip',
];
}