clientRepo = $clientRepo; $this->clientDatatable = $clientDatatable; } public function index() { if(request('page')) return $this->clientDatatable->query(request(), $this->getCurrentCompanyId()); $data = [ 'datatable' => $this->clientDatatable->buildOptions(), 'listaction' => $this->clientDatatable->listActions() ]; return view('client.vue_list', $data); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create(CreateClientRequest $request) { $client = new Client; $client->name = ''; $client->company_id = $this->getCurrentCompanyId(); $client_contact = new ClientContact; $client_contact->first_name = ""; $client_contact->user_id = auth()->user()->id; $client_contact->company_id = $this->getCurrentCompanyId(); $client_contact->id = 0; $client->contacts->add($client_contact); $data = [ 'client' => $client, 'hashed_id' => '' ]; return view('client.create', $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, new Client); $client->load('contacts', 'primary_contact'); $client->hashed_id = $this->encodePrimarykey($client->id); /* $data = [ 'client' => $client, 'hashed_id' => $this->encodePrimarykey($client->id) ]; */ Log::error(print_r($client,1)); return response()->json($client, 200); } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show(ShowClientRequest $request, Client $client) { return response()->json($client, 200); } /** * 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, 'settings' => [], 'pills' => $this->makeEntityTabMenu(Client::class), 'hashed_id' => $this->encodePrimarykey($client->id) ]; return view('client.edit', $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); $client->load('contacts', 'primary_contact'); return response()->json($client, 200); } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { // } /** * 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); } }