• File: Order.php
  • Full Path: /home/awtadalkhimacom/public_html/app/Models/Order.php
  • Date Modified: 10/30/2025 4:27 AM
  • File size: 210 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Order extends Model
{
    protected $fillable = ['customer_name', 'phone_number', 'product_name', 'province', 'area', 'landmark'];
}