Skip to content

6.0.4

Choose a tag to compare

@tamedevelopers tamedevelopers released this 08 Sep 04:35
· 23 commits to main since this release

Robust update with the same usage

CLI Command Support - php tame list
  • Direct DB:: (methodName) call without no issue
DB::table(''users)->select('name');
DB::tableExists(''users);
DB::query('query');

The below direct DB::select and DB::selectOne take a raw query string.

// will automatically call the get() method
DB::select(string $query);

// will automatically call the first() method
DB::selectOne(string $query);
```