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

19
app/Models/Success.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Success extends Model
{
use HasFactory;
protected $fillable = [
'title',
'slug',
'content',
'image',
'published_at',
];
}