Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

Commit

Permalink
Updated README_TR for syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
UnderlineWords committed May 14, 2020
1 parent 6f210e2 commit 3ccc619
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README_TR.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Bir model kaynağını, favorilere ekleme veya hatırlamak için kaydetme gibi f
``` php artisan migrate```
* Favoriteable trait dosyasını, kullanmak istediğiniz model dosyalarına ekleyiniz;
```php
<?php
namespace App\Post;

use CodeForms\Repositories\Favorite\Favoriteable;
Expand All @@ -24,6 +25,7 @@ class Post extends Model
```
## Kullanım
```php
<?php
$post = Post::find(1);

$post->hasFavorite(); // $post'un, mevcut kullanıcı için (auth()->user()) favori kaydını sorgular
Expand All @@ -36,6 +38,7 @@ $post->favorites()->count(); // $post'u favori olarak kaydeden toplam kullanıc
* (Tercihen) UserFavorites trait dosyasını ```User``` model'a ekleyin;
UserFavorites trait dosyası, kullanıcıların favori olarak kaydettiği kayıtları object olarak almayı sağlar.
```php
<?php
namespace App;

use Illuminate\Contracts\Auth\MustVerifyEmail;
Expand All @@ -50,6 +53,7 @@ class User extends Authenticatable

#### UserFavorites kullanımı
```php
<?php
$user = User::find(1);

$user->favorites(); // bir kullanıcının tüm favori kayıtlarını object olarak alır
Expand Down

0 comments on commit 3ccc619

Please sign in to comment.