Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

One of our goals is to achieve database independents. For this purpose we use default laravel Eloquent.

Guidelines

  1. Use as much as possible Eloquent Stuff
  2. Never use mysql_query() direct!
  3. Do not use complex queries with DB::. This will lead to DB dependencies!
  4. Avoid putting to much logic inside the Database – instead use Laravel.
    AND try to think more in a MVC kind of style

 

  • No labels