clientRepo = $clientRepo; } /** */ public function index(ClientFilters $filters) { $clients = Client::filter($filters); return $this->listResponse($clients); } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show(ShowClientRequest $request, Client $client) { $data = [ 'client' => $client, 'hashed_id' => $this->encodePrimarykey($client->id), 'company' => $client->company(), 'sizes' => Size::all(), ]; return response()->json($data); // return redirect()->route('api.clients.edit', ['id' => $this->encodePrimarykey($client->id)]); } /** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit(EditClientRequest $request, Client $client) { $data = [ 'client' => $client, 'hashed_id' => $this->encodePrimarykey($client->id), 'company' => $client->company(), 'sizes' => Size::all(), ]; return response()->json($data); } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param App\Models\Client $client * @return \Illuminate\Http\Response */ public function update(UpdateClientRequest $request, Client $client) { $client = UpdateClient::dispatchNow($request, $client); return response()->json($client, 200); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create(CreateClientRequest $request) { $client = ClientFactory::create(auth()->user()->company()->id, auth()->user()->id); $data = [ 'client' => $client, 'hashed_id' => '', 'countries' => Country::all() ]; return response()->json($data); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(StoreClientRequest $request) { $client = StoreClient::dispatchNow($request, ClientFactory::create(auth()->user()->company()->id, auth()->user()->id)); $client->load('contacts', 'primary_contact'); $client->hashed_id = $this->encodePrimarykey($client->id); return response()->json($client, 200); } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy(Client $client) { $client->delete(); return response()->json([], 200); } /** * Perform bulk actions on the list view * * @return Collection */ public function bulk() { $action = request()->input('action'); $ids = request()->input('ids'); $clients = Client::withTrashed()->find($ids); $clients->each(function ($client, $key) use($action){ if(auth()->user()->can('edit', $client)) ActionEntity::dispatchNow($client, $action); }); //todo need to return the updated dataset return response()->json('success', 200); } /** * Returns a client statement * * @return [type] [description] */ public function statement() { //todo } }