|
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\LoanOption;
use Illuminate\Http\Request;
class LoanOptionController extends Controller
{
public function index()
{
if(\Auth::user()->can('manage loan option'))
{
$loanoptions = LoanOption::where('created_by', '=', \Auth::user()->creatorId())->get();
return view('loanoption.index', compact('loanoptions'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function create()
{
if(\Auth::user()->can('create loan option'))
{
return view('loanoption.create');
}
else
{
return response()->json(['error' => __('Permission denied.')], 401);
}
}
public function store(Request $request)
{
if(\Auth::user()->can('create loan option'))
{
$validator = \Validator::make(
$request->all(), [
'name' => 'required|max:20',
]
);
if($validator->fails())
{
$messages = $validator->getMessageBag();
return redirect()->back()->with('error', $messages->first());
}
$loanoption = new LoanOption();
$loanoption->name = $request->name;
$loanoption->created_by = \Auth::user()->creatorId();
$loanoption->save();
return redirect()->route('loanoption.index')->with('success', __('LoanOption successfully created.'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function show(LoanOption $loanoption)
{
return redirect()->route('loanoption.index');
}
public function edit(LoanOption $loanoption)
{
if(\Auth::user()->can('edit loan option'))
{
if($loanoption->created_by == \Auth::user()->creatorId())
{
return view('loanoption.edit', compact('loanoption'));
}
else
{
return response()->json(['error' => __('Permission denied.')], 401);
}
}
else
{
return response()->json(['error' => __('Permission denied.')], 401);
}
}
public function update(Request $request, LoanOption $loanoption)
{
if(\Auth::user()->can('edit loan option'))
{
if($loanoption->created_by == \Auth::user()->creatorId())
{
$validator = \Validator::make(
$request->all(), [
'name' => 'required|max:20',
]
);
if($validator->fails())
{
$messages = $validator->getMessageBag();
return redirect()->back()->with('error', $messages->first());
}
$loanoption->name = $request->name;
$loanoption->save();
return redirect()->route('loanoption.index')->with('success', __('LoanOption successfully updated.'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
public function destroy(LoanOption $loanoption)
{
if(\Auth::user()->can('delete loan option'))
{
if($loanoption->created_by == \Auth::user()->creatorId())
{
$loanoption->delete();
return redirect()->route('loanoption.index')->with('success', __('LoanOption successfully deleted.'));
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
else
{
return redirect()->back()->with('error', __('Permission denied.'));
}
}
}