Skip to content

Instantly share code, notes, and snippets.

@haidarafif0809
Last active February 21, 2018 11:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save haidarafif0809/51f6d464bb6666be2bea4a8c7a6cea65 to your computer and use it in GitHub Desktop.
Save haidarafif0809/51f6d464bb6666be2bea4a8c7a6cea65 to your computer and use it in GitHub Desktop.
Eloquent Example
//ini sama aja dengan "SELECT * FROM flight"
$flights = App\Flight::all();
//ini sama aja dengan "SELECT * FROM flight WHERE id = 1"
$flight = App\Flight::find(1);
//ini sama aja dengan "SELECT * FROM flight WHERE active = 1 LIMIT 1"
$flight = App\Flight::where('active', 1)->first();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment