feat: New design and optimization

This commit is contained in:
2025-10-27 13:23:05 +05:45
parent 63777cb3c1
commit db9315ad22
44 changed files with 2877 additions and 336 deletions

14
app/Models/Product.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable = [
'title',
'image_url',
'type',
];
}

View File

@@ -4,14 +4,12 @@ namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class testimonial extends Model
class Testimonial extends Model
{
protected $fillable = [
'name',
'company',
'post',
'location',
'rating',
'description'
'description',
'image'
];
}