DIR:/home/drishtigems.com/www/vendor/s-cart/core/src/Front/Models/ |
Current File : /home/drishtigems.com/www/vendor/s-cart/core/src/Front/Models/ShopContact.php |
<?php #S-Cart/Core/Front/Models/ShopPageStore.php namespace SCart\Core\Front\Models; use Illuminate\Database\Eloquent\Model; class ShopContact extends Model { use \SCart\Core\Front\Models\ModelTrait; protected $primaryKey = 'id'; public $incrementing = true; protected $guarded = []; public $timestamps = false; public $table = SC_DB_PREFIX.'shop_contact'; protected $connection = SC_CONNECTION; public function createContact(array $dataInsert){ return self::create($dataInsert); } } |