<?php namespace App\Http\Controllers\Webprofile\Backend; use Illuminate\Http\Request; use App\Http\Controllers\Controller; use App\Models\Webprofile\Categories; use App\Repositories\Webprofile\En\InformationRepository as EnInformationRepository; use App\Repositories\Webprofile\InformationRepository; use Statickidz\GoogleTranslate; class InformationController extends Controller { private $repo; private $repoEn; private $SOURCE = 'id'; private $TARGET = 'en'; public function __construct( InformationRepository $repo, EnInformationRepository $repoEn ){ $this->repo = $repo; $this->repoEn = $repoEn; } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index(Request $request) { if ($request->ajax()) { $data = $this->repo->get(['rEn']); return $this->repo->datatable($data); } return view('webprofile.backend.informations.index')->withTitle(trans('feature.information')); } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { $categories = Categories::pluck('name', 'id'); $data = [ 'categories' => $categories, ]; return view('webprofile.backend.informations.create', $data)->withTitle(trans('feature.create_information')); } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { $data = $request->except('_token'); array_key_exists('info_status', $data) ? $data['info_status'] = 1 : $data['info_status'] = 0; $save = $this->repo->store($data); // save translate $this->createEn($data, $save); return redirect()->route('informations.index'); } private function createEn($data, $information) { $trans = new GoogleTranslate(); $title = $trans->translate($this->SOURCE, $this->TARGET, $data['title']); $content = $trans->translate($this->SOURCE, $this->TARGET, strip_tags($data['content'])); $dataEn['information_id'] = $information->id; $dataEn['title'] = $title; $dataEn['content'] = $content; $this->repoEn->store($dataEn); } /** * Display the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function show($id) { // } /** * Show the form for editing the specified resource. * * @param int $id * @return \Illuminate\Http\Response */ public function edit($id) { $data = $this->repo->findId($id); $categories = Categories::pluck('name', 'id'); $data = [ 'data' => $data, 'categories' => $categories, ]; return view('webprofile.backend.informations.edit', $data)->withTitle(trans('feature.edit_information')); } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param int $id * @return \Illuminate\Http\Response */ public function update(Request $request, $id) { $data = $request->except(['_token', 'id', 'title_en', 'content_en']); $dataEn = $request->except(['_token', 'id']); array_key_exists('info_status', $data) ? $data['info_status'] = 1 : $data['info_status'] = 0; $information = $this->repo->findId($id, ['rEn']); $edit = $this->repo->update($data, $information); $this->updateEn($dataEn, $information); return redirect()->route('informations.index'); } public function updateEn($data, $information) { $dataEn['title'] = $data['title_en']; $dataEn['content'] = $data['content_en']; $this->repoEn->update($dataEn, $information->rEn); } /** * Remove the specified resource from storage. * * @param int $id * @return \Illuminate\Http\Response */ public function destroy($id) { $data = $this->repo->findId($id); $this->repo->destroy($data); return response()->json(['done']); } }