Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mlevent committed Nov 10, 2021
1 parent bcd5146 commit bb4a41d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,8 +344,8 @@ $touch = $db->table('products')
`hit` sütunu `1` veya gönderilen değer kadar artar.

```php
$increment = $db->table('products')
->find(11556)
$increment = $db->table('posts')
->where('slug', 'whats-new-in-laravel-8')
->increment('hit');
```

Expand All @@ -357,8 +357,8 @@ $increment = $db->table('products')
`hit` sütunu `1` veya gönderilen değer kadar azalır.

```php
$increment = $db->table('products')
->find(11556)
$increment = $db->table('posts')
->where('slug', 'whats-new-in-laravel-8')
->decrement('hit');
```

Expand Down

0 comments on commit bb4a41d

Please sign in to comment.