Merhaba üzerinde çalıştığım bir Orchid Laravel admin projesi mevcut. Tek sıkıntı şu herhangi bir fotoğraf yükleyince update butonuna tıklıyorum ve hiçbir şey olmuyor. Storage dosyasını kontrol ettim oraya da gelmiyor. Database'de hero diye bir column oluşturdum herhangi bir link orda da gözükmüyor. Bomboş duruyor yani. Uyguladığım Documentation linki de atacağım.
app/posteditscreen.php - Yüklediğim yer ve layout kodu:
https://imgur.com/a/HTGpWsL
Cropper::make('post.hero')
->targetId()
->title('Large web banner image, generally in the front and center')
->width(1000)
->height(500),
app/posteditscreen.php - create and update satırı:
`public function createOrUpdate(Post $post, Request $request)
{
$post->fill($request->get('post'))->save();
Alert::info('You have successfully created an post.');
return redirect()->route('platform.post.list');
}`
app/Post.php - post class satırı:
{
use AsSource, Attachable, Filterable;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'title',
'description',
'body',
'author',
'hero'
];
public function createOrUpdate(Post $post, Request $request)
{
$post->fill($request->get('post'))->save();
$post->attachment()->syncWithoutDetaching(
$request->input('post.attachment', [])
);
Alert::info('You have successfully created an post.');
}```
Documentation burda. Yazılanları uyguladım birebir. [https://orchid.software/en/docs/quickstart-files/](https://orchid.software/en/docs/quickstart-files/)
İyi çalışmalar.