product sku model

This commit is contained in:
Sam Chen 2021-12-26 22:07:09 +08:00
parent f0cd3e8fd4
commit c688f18ac8
9 changed files with 122 additions and 106 deletions

View File

@ -10,6 +10,7 @@ class ProductsController extends Controller
{
public function show(Request $request, Product $product)
{
$product->load('skus');
dd($product);
}
}

View File

@ -9,5 +9,10 @@ class Product extends Model
{
use HasFactory;
protected $fillable = ['price', 'status'];
protected $fillable = ['image', 'video', 'sort_order', 'status', 'variable'];
public function skus()
{
return $this->hasMany(ProductSku::class);
}
}

13
app/Models/ProductSku.php Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ProductSku extends Model
{
use HasFactory;
protected $fillable = ['product_id', 'image', 'model', 'sku', 'price', 'quantity', 'is_default'];
}

View File

@ -0,0 +1,25 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class ProductFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'id' => 0,
'image' => 'path/to/image.jpg',
'video' => '',
'sort_order' => 0,
'status' => true,
'variable' => '',
];
}
}

View File

@ -0,0 +1,26 @@
<?php
namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class ProductSkuFactory extends Factory
{
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'product_id' => 0,
'image' => '',
'model' => $this->faker->isbn10(),
'sku' => $this->faker->isbn10(),
'price' => $this->faker->numberBetween(10, 100),
'quantity' => $this->faker->numberBetween(1, 100),
'is_default' => true,
];
}
}

View File

@ -1,36 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}

View File

@ -1,32 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePasswordResetsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('password_resets', function (Blueprint $table) {
$table->string('email')->index();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('password_resets');
}
}

View File

@ -1,36 +0,0 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreatePersonalAccessTokensTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('personal_access_tokens', function (Blueprint $table) {
$table->id();
$table->morphs('tokenable');
$table->string('name');
$table->string('token', 64)->unique();
$table->text('abilities')->nullable();
$table->timestamp('last_used_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('personal_access_tokens');
}
}

View File

@ -0,0 +1,50 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTables extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('products', function (Blueprint $table) {
$table->id()->startingValue(100_000);
$table->string('image');
$table->string('video');
$table->integer('sort_order');
$table->boolean('status');
$table->json('variable');
$table->timestamps();
$table->softDeletes();
});
Schema::create('product_skus', function (Blueprint $table) {
$table->id()->startingValue(100_000);
$table->unsignedBigInteger('product_id');
$table->string('image');
$table->string('model');
$table->string('sku');
$table->double('price');
$table->integer('quantity');
$table->boolean('is_default');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('products');
Schema::dropIfExists('product_skus');
}
}