feat: New design and optimization

This commit is contained in:
2025-10-27 13:23:05 +05:45
parent 63777cb3c1
commit db9315ad22
44 changed files with 2877 additions and 336 deletions

View File

@@ -13,10 +13,8 @@ return new class extends Migration {
Schema::create('testimonials', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('company');
$table->string('post');
$table->string('location');
$table->double('rating');
$table->string("image");
$table->text('description');
$table->timestamps();
});

View File

@@ -0,0 +1,29 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('products', function (Blueprint $table) {
$table->id();
$table->string('image_url');
$table->string('title');
$table->string('type');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('products');
}
};