Current File : /home/tradevaly/ladybagcollection.com/project/app/Models/Shipping.php
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Shipping extends Model
{
    protected $fillable = ['user_id', 'title', 'subtitle', 'price'];

    public $timestamps = false;

}