complete story 15.1

This commit is contained in:
Naser Mansour
2026-01-09 18:45:17 +02:00
parent 5803410584
commit 959cc0e717
9 changed files with 338 additions and 9 deletions
@@ -0,0 +1,35 @@
<?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('potential_clients', function (Blueprint $table) {
$table->id();
$table->string('type');
$table->string('name')->nullable();
$table->string('phone', 50)->nullable();
$table->string('email')->nullable();
$table->text('address')->nullable();
$table->string('social_media')->nullable();
$table->string('website')->nullable();
$table->text('notes')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('potential_clients');
}
};