Added Feedback section.

This commit is contained in:
2024-04-23 19:30:56 +05:00
parent 491249c8d8
commit 8c353a49b7
44 changed files with 1050 additions and 0 deletions
+5
View File
@@ -57,4 +57,9 @@ final class Project extends Model implements StorageContract
{
return $this->hasMany(ProjectLink::class);
}
public function feedbacks(): HasMany
{
return $this->hasMany(ProjectFeedback::class);
}
}
@@ -0,0 +1,52 @@
<?php declare(strict_types=1);
namespace App\Models;
use App\Models\Scopes\CreatedScope;
use Illuminate\Database\Eloquent\Attributes\ScopedBy;
use Illuminate\Database\Eloquent\Concerns\HasUuids;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
#[ScopedBy([CreatedScope::class])]
final class ProjectFeedback extends Model
{
use HasUuids, HasFactory, SoftDeletes;
protected $table = 'project_feedback';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
'email',
'message',
'ip',
'user_agent',
'user_id',
];
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'name' => 'encrypted',
'email' => 'encrypted',
'message' => 'encrypted',
];
}
public function project(): BelongsTo
{
return $this->belongsTo(Project::class);
}
}
@@ -0,0 +1,18 @@
<?php declare(strict_types=1);
namespace App\Models\Scopes;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Scope;
class CreatedScope implements Scope
{
/**
* Apply the scope to a given Eloquent query builder.
*/
public function apply(Builder $builder, Model $model): void
{
$builder->orderBy('created_at', 'desc');
}
}