|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/app/Http/Controllers/ |
Upload File : |
<?php
namespace App\Http\Controllers;
use App\Models\Goal;
use Illuminate\Http\Request;
class GoalController extends Controller
{
public function index()
{
if(\Auth::user()->can('manage goal'))
{
$golas = Goal::where('created_by', '=', \Auth::user()->creatorId())->get();
return view('goal.index', compact('golas'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function create()
{
if(\Auth::user()->can('create goal'))
{
$types = Goal::$goalType;
return view('goal.create', compact('types'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function store(Request $request)
{
if(\Auth::user()->can('create goal'))
{
$validator = \Validator::make(
$request->all(), [
'name' => 'required',
'type' => 'required',
'from' => 'required',
'to' => 'required',
'amount' => 'required',
]
);
if($validator->fails())
{
$messages = $validator->getMessageBag();
return redirect()->back()->with('error', $messages->first());
}
$goal = new Goal();
$goal->name = $request->name;
$goal->type = $request->type;
$goal->from = $request->from;
$goal->to = $request->to;
$goal->amount = $request->amount;
$goal->is_display = isset($request->is_display) ? 1 : 0;
$goal->created_by = \Auth::user()->creatorId();
$goal->save();
return redirect()->route('goal.index')->with('success', __('Goal successfully created.'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function show(Goal $goal)
{
//
}
public function edit(Goal $goal)
{
if(\Auth::user()->can('create goal'))
{
$types = Goal::$goalType;
return view('goal.edit', compact('types', 'goal'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function update(Request $request, Goal $goal)
{
if(\Auth::user()->can('edit goal'))
{
if($goal->created_by == \Auth::user()->creatorId())
{
$validator = \Validator::make(
$request->all(), [
'name' => 'required',
'type' => 'required',
'from' => 'required',
'to' => 'required',
'amount' => 'required',
]
);
if($validator->fails())
{
$messages = $validator->getMessageBag();
return redirect()->back()->with('error', $messages->first());
}
$goal->name = $request->name;
$goal->type = $request->type;
$goal->from = $request->from;
$goal->to = $request->to;
$goal->amount = $request->amount;
$goal->is_display = isset($request->is_display) ? 1 : 0;
$goal->save();
return redirect()->route('goal.index')->with('success', __('Goal successfully updated.'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function destroy(Goal $goal)
{
if(\Auth::user()->can('delete goal'))
{
if($goal->created_by == \Auth::user()->creatorId())
{
$goal->delete();
return redirect()->route('goal.index')->with('success', __('Goal successfully deleted.'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
}