Update footer and header navigation links to reflect new route for success stories, and remove pagination section from news index view for cleaner layout.

This commit is contained in:
2025-07-28 21:17:54 +05:00
parent 41abdb6fc8
commit 9b3ca3ff66
13 changed files with 351 additions and 17 deletions

View File

@@ -0,0 +1,32 @@
<?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('successes', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('slug')->unique();
$table->longText('content');
$table->string('image')->nullable();
$table->timestamp('published_at');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('successes');
}
};