Error:-
"Add [name] to fillable property to allow mass assignment on [App\\Models\\TeamRating].",
Solutions:-
Go to TeamRating model and put below code for fillable
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class TeamRating_count extends Model
{
use HasFactory;
protected $connection = 'mysqlTeamRating';
protected $table = 'ratings';
protected $fillable = ['name'];
}
Thanks for learning