Ejemplo n.º 1
0
 public function store(Request $request)
 {
     $location = $this->user->locations()->save(new DriverLocation($request->all()));
     return $this->jsonRespond->respondModelStore($this->driverLocationTransformer, $location);
 }