Eloquent is very flexible, allowing you to configure to an existing database rather than using the Eloquent naming conventions. The documentation (http://laravel.com/docs/eloquent) describes the process very thoroughly. For example:
protected $primaryKey = 'your_primary_key';
protected $table = 'your_table_name';
Same goes for any relationships you setup.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community