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 TestimonialGroup extends Model
{
protected $table = 'testimonial_groups';
use Translatable;
Astrotomic\Translatable\Translatable
$each
DavideCasiraghi\LaravelT...Models\TestimonialGroup
public $translatedAttributes = ['title'];
protected $fillable = [
'quotes_color',
'max_characters',
'show_title',
'title_alignment',
];
}