Skip to content

Instantly share code, notes, and snippets.

@renanpalmeira
Created October 5, 2016 20:39
Show Gist options
  • Save renanpalmeira/6f288b65c475d43463ba0ef39c07925c to your computer and use it in GitHub Desktop.
Save renanpalmeira/6f288b65c475d43463ba0ef39c07925c to your computer and use it in GitHub Desktop.
Exemplo
<?php
$capsule = new Capsule;
$capsule->addConnection($database);
$capsule->setAsGlobal();
$capsule->bootEloquent();
<?php
class Tabela extends Illuminate\Database\Eloquent\Model {
// ...
}
<?php
include 'database.php';
include 'model.php';
Tabela::where(...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment