Create routes and views for customers and their addresses.

This commit is contained in:
2024-12-10 21:09:12 +01:00
parent 9d2eddbcf1
commit 679a067506
16 changed files with 797 additions and 3 deletions

View File

@@ -8,4 +8,20 @@ use Illuminate\Database\Eloquent\SoftDeletes;
class Address extends Model
{
use SoftDeletes;
protected $fillable = [
'is_address',
'is_delivery',
'name',
'email',
'phone',
'address',
'city',
'state',
'country',
'zip',
];
}