merhabalar,
database e yüklemiş olduğum fotoğrafları malasefki template me çağıramıyorum nasıl yapabilirim
ArticleController:
public function store(Request $request)
{
$request->validate(
[
'category_id' => ['required','integer','exists:categories,id'],
'title' => 'required',
'slug' => 'unique:articles',
'image' => 'nullable|mimes:jpg,jpeg,png,webp,gif,bmp',
],
[
'title.required' => 'Başlık kısmı boş bırakılamaz.',
'slug.unique' => 'Slug kullanılıyor.',
'image.mimes' => 'Geçersiz dosya uzantısı! Sadece (jpg,jpeg,png,webp,gif,bmp) geçerlidir.',
'category_id.required' => 'Kategori seçimi yapmadınız.',
'category_id.integer' => 'Kategori geçersiz.',
'category_id.exists' => 'Kategori geçersiz.',
]
);
$article = new Article;
$article->category_id = $request->input('category_id');
$article->title = $request->input('title');
$article->content = $request->input('content');
$article->slug = Str::slug($article->title);
if ($request->hasfile('image')) {
$file = $request->file('image');
$image = Storage::putFile('articles', new File($file->getRealPath()));
$article->image = $image;
}
$article->save();
return redirect()->route('admin.dashboard');
}
filessystem.php:
'disks' => [
'local' => [
'driver' => 'local',
'root' => storage_path('app'),
'throw' => false,
],
'public' => [
'driver' => 'local',
'root' => storage_path('app/public'),
'url' => env('APP_URL').'/uploads',
'visibility' => 'public',
'throw' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'url' => env('AWS_URL'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'throw' => false,
],
],
/*
|--------------------------------------------------------------------------
| Symbolic Links
|--------------------------------------------------------------------------
|
| Here you may configure the symbolic links that will be created when the
| `storage:link` Artisan command is executed. The array keys should be
| the locations of the links and the values should be their targets.
|
*/
'links' => [
public_path('uploads') => storage_path('app/public'),
],
];
aldığım hata:
php artisan storage:link yaptığımda aldığım çıktı:
ERROR The [C:\Users\galat\Desktop\jetStream blog sitem\blog_sitem\public\storage] link already exists.