mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
84 lines
2.5 KiB
PHP
84 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Modules\ContactRequest\Http\Controllers;
|
|
|
|
use Illuminate\Contracts\Support\Renderable;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Routing\Controller;
|
|
use \Modules\ContactRequest\Services\ContactService;
|
|
use Brian2694\Toastr\Facades\Toastr;
|
|
use Exception;
|
|
use Modules\UserActivityLog\Traits\LogActivity;
|
|
use Yajra\DataTables\Facades\DataTables;
|
|
|
|
class ContactController extends Controller
|
|
{
|
|
protected $contactService;
|
|
|
|
public function __construct(ContactService $contactService)
|
|
{
|
|
$this->contactService = $contactService;
|
|
$this->middleware('maintenance_mode');
|
|
}
|
|
public function index()
|
|
{
|
|
try{
|
|
return view('contactrequest::contact.index');
|
|
}catch(Exception $e){
|
|
LogActivity::errorLog($e->getMessage());
|
|
return $e->getMessage();
|
|
}
|
|
}
|
|
|
|
public function getData(){
|
|
$ContactList = $this->contactService->getAll();
|
|
return DataTables::of($ContactList)
|
|
->addIndexColumn()
|
|
|
|
->addColumn('message', function($ContactList){
|
|
return \Illuminate\Support\Str::limit(@$ContactList->message, 50, $end='.....');
|
|
})
|
|
->addColumn('action', function($ContactList){
|
|
return view('contactrequest::contact.components._action_td',compact('ContactList'));
|
|
})
|
|
->rawColumns(['action'])
|
|
->toJson();
|
|
}
|
|
|
|
public function show($id)
|
|
{
|
|
$contact = $this->contactService->getById($id);
|
|
return view('contactrequest::contact.show',compact('contact'));
|
|
}
|
|
|
|
public function destroy(Request $request)
|
|
{
|
|
try {
|
|
$this->contactService->deleteById($request->id);
|
|
LogActivity::successLog('contact deleted.');
|
|
} catch (Exception $e) {
|
|
LogActivity::errorLog($e->getMessage());
|
|
return response()->json([
|
|
'status' => false,
|
|
'message' => $e->getMessage()
|
|
]);
|
|
}
|
|
return $this->loadTableData();
|
|
}
|
|
|
|
private function loadTableData()
|
|
{
|
|
try {
|
|
$ContactList = $this->contactService->getAll();
|
|
|
|
return response()->json([
|
|
'TableData' => (string)view('contactrequest::contact.components.list', compact('ContactList'))
|
|
]);
|
|
} catch (Exception $e) {
|
|
LogActivity::errorLog($e->getMessage());
|
|
Toastr::error(__('common.operation_failed'));
|
|
return back();
|
|
}
|
|
}
|
|
}
|