Add server product catalog so VPS and dedicated pages can take orders.
Deploy Ladill Servers / deploy (push) Successful in 25s

Seed Contabo-backed VPS and dedicated plans, open the order modal from dashboard links, and show clearer order CTAs when the catalog is empty.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-06 20:01:05 +00:00
co-authored by Cursor
parent 1217bdac41
commit 608e6947bf
5 changed files with 167 additions and 22 deletions
+1 -12
View File
@@ -2,28 +2,17 @@
namespace Database\Seeders;
use App\Models\User;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Database\Seeders\HostingProductSeeder;
class DatabaseSeeder extends Seeder
{
use WithoutModelEvents;
/**
* Seed the application's database.
*/
public function run(): void
{
$this->call([
HostingProductSeeder::class,
]);
// User::factory(10)->create();
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
ServerProductSeeder::class,
]);
}
}