Skip to content

Instantly share code, notes, and snippets.

View marlowBlackwood's full-sized avatar

Marlow Nickell marlowBlackwood

View GitHub Profile
@msurguy
msurguy / eloquent.md
Last active February 8, 2022 03:13
Laravel 4 Eloquent Cheat Sheet.

Conventions:

Defining Eloquent model (will assume that DB table named is set as plural of class name and primary key named "id"):

class Shop extends Eloquent {}

Using custom table name

protected $table = 'my_shops';