Skip to content

Commit

Permalink
Update field.md (#210)
Browse files Browse the repository at this point in the history
Add Cropper value examples
  • Loading branch information
rim89 authored Nov 13, 2024
1 parent ad2b679 commit 50a6ddb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/ru/docs/field.md
Original file line number Diff line number Diff line change
Expand Up @@ -732,21 +732,35 @@ Cropper::make('picture')
```php
Cropper::make('picture')
->targetId();

// 20
```
Будет возвращён порядковый номер (`id`) записи `Attachment`.

```php
Cropper::make('picture')
->targetRelativeUrl();

// /storage/2024/11/12/0ae30560194b944c656c548becd371b15b22cfba.jpg
```
Вернёт относительный путь до изображения.

```php
Cropper::make('picture')
->targetUrl();

// http://localhost/storage/2024/11/12/ade1a19e778ae64772a3e5348d32d5330c05893c.jpg
```
Вернёт абсолютный путь до изображения.

```php
Cropper::make('picture')
->path('some_path');

// http://localhost/storage/some_path/69dc36c754411788a35a7e108d3b57396ddbcedc.jpg
```
Вернёт абсолютный путь до изображения, заменив path на своё значение



## Upload
Expand Down

0 comments on commit 50a6ddb

Please sign in to comment.