landing page completed

This commit is contained in:
2025-07-09 17:54:32 +05:45
parent 608f63cc87
commit d85b5a3662
27 changed files with 1097 additions and 63 deletions

52
app/Models/Banners.php Normal file
View File

@ -0,0 +1,52 @@
<?php
namespace App\Models;
use App\Models\User;
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use App\Traits\CreatedUpdatedBy;
class Banners extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $primaryKey = 'banner_id';
public $timestamps = true;
protected $fillable = [
'display',
'title',
'text',
'extra_content',
'cover',
'display_order',
'status',
'createdby',
'updatedby',
'created_at',
'updated_at',
];
protected $appends = ['status_name'];
protected function getStatusNameAttribute()
{
return $this->status == 1 ? '<span class="badge text-bg-success-soft"> Active </span>' : '<span class="badge text-bg-danger-soft">Inactive</span>';
}
protected function createdBy(): Attribute
{
return Attribute::make(
get: fn($value) => User::find($value) ? User::find($value)->name : '',
);
}
protected function updatedBy(): Attribute
{
return Attribute::make(
get: fn($value) => User::find($value) ? User::find($value)->name : '',
);
}
}