edit controller

This commit is contained in:
Zain Fauzan Rofie Azizi
2018-04-23 15:49:04 +08:00
parent 4a8a075414
commit 5953408634
2 changed files with 7 additions and 4 deletions
@@ -18,7 +18,7 @@ class DeliveryInfoController extends Controller
public function store(DeliveryInfo $deliveryinfo)
{
$deliveryinfo = DeliveryInfot::create($request->all());
$deliveryinfo = DeliveryInfo::create($request->all());
return response()->json(DeliveryInfo, 201);
}