Debug School

rakesh kumar
rakesh kumar

Posted on

Laravel Error:Column not found: 1054 Unknown column 'countries.id'

yesterday i got error when i select country india in dropdown

Image description

Image description

Solution
add this in country modal

protected $primaryKey = 'country_id';
Enter fullscreen mode Exit fullscreen mode
class Country extends Model
{
    protected
     $table = "countries";


     protected $primaryKey = 'country_id';

}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)