PHP code example of flooris / prestashop-models
1. Go to this page and download the library: Download flooris/prestashop-models library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
flooris / prestashop-models example snippets
use App\Models\PrestaShop\Product;
Product::factory()->create([
'name' => 'Sample Product',
'price' => 19.99,
]);
use Faker\Generator as Faker;
$factory->define(App\Models\PrestaShop\Product::class, function (Faker $faker) {
return [
'name' => $faker->word,
'price' => $faker->randomFloat(2, 1, 100),
// Add other product fields here
];
});
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Flooris\Prestashop\Models\Product\ProductAttribute as BaseProductAttribute;
use Flooris\Prestashop\Models\Product\ProductAttributeShop;
class ProductAttribute extends BaseProductAttribute
{
public function productAttributeShops(): HasMany
{
return $this->hasMany(ProductAttributeShop::class, 'id_product_attribute', 'id_product_attribute');
}
public function isInStock(int $idShop): bool
{
/** @var ?ProductAttributeShop $productAttributeShop */
$productAttributeShop = $this->productAttributeShops()->where('id_shop', $idShop)->first();
if ($productAttributeShop?->available_date !== '0000-00-00') {
return false;
}
return $this->productAttributeShops()->where('id_shop', $idShop)->first()?->active;
}
}
use App\Models\PrestaShop\Product;
use Tests\TestCase;
class ProductTest extends TestCase
{
public function test_product_creation()
{
$product = Product::factory()->create([
'name' => 'Test Product',
'price' => 10.99,
]);
$this->assertDatabaseHas('products', [
'name' => 'Test Product',
'price' => 10.99,
]);
}
}