我試圖在我的Laravel CRUD應用程序中創建DELETE按鈕。並且有一個錯誤:Laravel&LaravelCollective第一個參數應該是字符串或整數
(2/2) ErrorException array_key_exists(): The first argument should be either a string or an integer
我的觀點:
{{!!Form::open(['action' => ['[email protected]', $company->id], 'method' => 'PUT'])!!}}
{{Form::input('Delete',['class'=>'btn btn-danger'])}}
{{!!Form::close()!!}}
我使用Laravel集體文檔和它說我可以用:
Form::open(['action' => ['[email protected]', $user]])
但是,什麼是錯我的代碼?
是'{{!!'有效嗎? AFAIK,它不是'{{'或'{!!' – Devon
你好,你是對的。 {{!!無效 – qqmydarling