Unknown column 'notifiable_id' in 'field list' - Laravel Notifications

Solution 1:

You need to change $table->morphs('php '); in your notifications migration to $table->morphs('notifiable');

Credits goes directly to: https://laracasts.com/discuss/channels/laravel/unknown-column-id-in-field-list-laravel-notifications @sutherland