Final Commit

This commit is contained in:
2024-04-24 10:17:18 +05:45
parent b49e06fa93
commit 3502bb0b4f
41 changed files with 1497 additions and 502 deletions

View File

@ -1,42 +1,44 @@
<?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;
namespace App\Models;
class Campaignarticles extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $primaryKey = 'campaignarticle_id';
public $timestamps = true;
protected $fillable =[
'campaigns_id',
'parent_article',
'title',
'alias',
'text',
'link',
'cover_photo',
'thumb',
'display_order',
'status',
'created_at',
'updated_at',
'createdby',
'updatedby',
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 Campaignarticles extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $appends = ['status_name'];
protected $primaryKey = 'campaignarticle_id';
public $timestamps = true;
protected $fillable = [
'campaigns_id',
'parent_article',
'sub_title',
'title',
'alias',
'text',
'link',
'cover_photo',
'thumb',
'display_order',
'status',
'created_at',
'updated_at',
'createdby',
'updatedby',
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 $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
{
@ -51,4 +53,4 @@
get: fn ($value) => User::find($value) ? User::find($value)->name : '',
);
}
}
}

49
app/Models/Logos.php Normal file
View File

@ -0,0 +1,49 @@
<?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 Logos extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $primaryKey = 'logo_id';
public $timestamps = true;
protected $fillable =[
'logo',
'link',
'display_order',
'status',
'remarks',
'created_at',
'createdby',
'updated_at',
'updatedby',
];
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 : '',
);
}
}

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 Testimonials extends Model
{
use HasFactory, CreatedUpdatedBy;
protected $primaryKey = 'testimonial_id';
public $timestamps = true;
protected $fillable = [
'video_url',
'review',
'name',
'designation',
'display_order',
'status',
'remarks',
'created_at',
'createdby',
'updated_at',
'updatedby',
];
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 : '',
);
}
}