سلام خسته نباشید دلیل این خطا درک نمیکنم
resources
<form action="{{ route('articles.destroy' , \['id' => $article->id\]) }}" method="POST">
@method('DELETE')
@csrf
<div class="btn-group btn-group-xs">
<a href="{{ route('articles.edit' , \['id' => $article->id\]) }}" class="btn btn-primary">ویرایش</a>
<button type="submit" class="btn btn-danger">حذف</button>
</div>
</form>
routes
Route::resource('/Admin/articles' , ArticleController::class )->except(\['show'\]);
<form action="{{ route('articles.destroy' , ['id' => $article->id]) }}" method="POST">
@method('DELETE')
@csrf
<div class="btn-group btn-group-xs">
<a href="{{ route('articles.edit' , ['id' => $article->id]) }}" class="btn btn-primary">ویرایش</a>
<button type="submit" class="btn btn-danger">حذف</button>
</div>
</form>
routes
Route::resource('/Admin/articles' , ArticleController::class )->except(['show']);
کد شما این هست اون طوری معلوم نبود چی نوشتید به این شکل بزنی توکی بشه شاید :
Route::post('/Admin/articles' , ArticleController::class )->except(['show']);
سلام این روت انتظار داره بهش پارامتر article بدی ولی شما داری بهش key ایدی میدید باید اینجوری action بنویسی
{{ route('articles.destroy' , ['article' => $article->id]) }}
و به این شکلم میتوانید بنویسید
{{ route('articles.destroy' , $article->id) }}
آیا مایل به ارسال نوتیفیکیشن و اخبار از طرف راکت هستید ؟