Laravel – AppModelsCardsAPI cannot use mtgsdkCard – it is not a trait
When requesting https://github.com/MagicTheGathering/mtg-sdk-php my application throws an error: AppModelsCardsAPI cannot use mtgsdkCard - it is not a trait My model: namespace AppModels; use IlluminateDatabaseEloquentFactoriesHasFactory; use IlluminateDatabaseEloquentModel; use mtgsdkCard as SDKCard; class CardsAPI extends Model { use HasFactory, SDKCard; public function…