Skip to content
On this page

app/Models/

Default Laravel directory to contain custom Models files.

In addition to models this directory contains:

  • Observers
  • Relations
  • Scopes
  • Traits
  • Transformers

There are also some special classes which are either an extension from package models or Laravel customizations:

  • Audit: This class is the customized version of the Laravel Auditing package.
  • BaseModel: This class has the base Model functionality and MUST be extended by all other models except User.
  • Media: This class is the customized version of the Laravel Media Library package.