This commit is contained in:
Ludovic CANDELLIER
2021-04-05 22:31:15 +02:00
parent e6e86767d3
commit 0620ab19c4
12 changed files with 167 additions and 137 deletions

View File

@@ -31,8 +31,8 @@ class ArticleController extends Controller
public function store(Request $request)
{
$data = $request->all();
dump($data);
exit;
// dump($data);
// exit;
Articles::storeFull($data);
return redirect()->route('Shop.Admin.Articles.index');
}