How to connect your non-laravel classes for use in the controller? This may be a set of classes, or even just functions. In general, an analogue of require_once is needed not to write everything in the controller, but not to inherit classes from the Model, like this:
namespace App; use Illuminate\Database\Eloquent\Model; class Code extends Model { }