feat: New design and optimization
This commit is contained in:
14
app/Models/Product.php
Normal file
14
app/Models/Product.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Product extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'title',
|
||||
'image_url',
|
||||
'type',
|
||||
];
|
||||
}
|
||||
@@ -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'
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user