amiralidev / Laravel-Nova-Mongodb

add mongodb support to laravel nova
MIT License
8 stars 0 forks source link

Laravel Nova 4 #1

Open simone-bianco opened 2 years ago

simone-bianco commented 2 years ago

How can I do the same for Nova 4? These fixes are not working for Nova 4

chammedinger commented 2 years ago

I'm also looking for a complete solution for Nova 4. So far I could not resolve all issues.

feeh27 commented 1 year ago

Hello @simone-bianco and @chammedinger.

To works you need solve some problems:

  1. Perform DB actions: Natively Laravel doesn't support MongoDB.
  2. Transactions: MongoDB works in a different way and it doesn't allow the data to be saved
  3. Action logs: After solving the problem with transactions, an error always occurred
  4. Search: You need replace qualifyColumn method in Eloquent Model class

Solutions that worked for me: