for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DavideCasiraghi\LaravelTestimonials\Models;
use Astrotomic\Translatable\Translatable;
use Illuminate\Database\Eloquent\Model;
class Testimonial extends Model
{
protected $table = 'testimonials';
use Translatable;
Astrotomic\Translatable\Translatable
$each
DavideCasiraghi\LaravelT...ials\Models\Testimonial
public $translatedAttributes = ['name', 'body', 'profession'];
protected $fillable = [
'testimonials_group',
'gender',
'image_file_name',
];
}