Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/abdulrahmanmasoud/scandiweb-task


https://github.com/abdulrahmanmasoud/scandiweb-task

Last synced: about 8 hours ago
JSON representation

Awesome Lists containing this project

README

        

## Get example
```php
DB::table('products')->where('id', '>', '0')->get();
```
## First example
```php
DB::table('products')->where('id', '>', '0')->first();
```
## Create exampel
```php
$x = DB::table('products')->create([
'title'=>'hello title',
'content'=>'hello content',
]);
```
## Delete example
```php
$x = DB::table('products')->delete('id', [20,21]);
```