yesterday i got error when i select country india in dropdown
Solution
add this in country modal
protected $primaryKey = 'country_id';
class Country extends Model
{
protected
$table = "countries";
protected $primaryKey = 'country_id';
}
Top comments (0)