What are your thoughts on using the morph class name to fetch the model? ```js cy.create('App\\Models\\User', { email: 'test@example.com' }); ``` can be a little more simplified and easier to type ```js cy.create('user', { email: 'test@example.com' }); cy.create({ model: 'user', attributes: { email: 'test@example.com' }, count: 10 }) ``` For those who use the morph map, it can be nice. Would you accept a PR for this?