Cetaklabel/Http/Controllers/SpecialCodeController.php

143 lines
4.7 KiB
PHP

<?php
namespace Modules\Cetaklabel\Http\Controllers;
use App\Http\Controllers\Controller;
use Exception;
use Illuminate\Support\Facades\Auth;
use Modules\Cetaklabel\DataTables\SpecialCodeDataTable;
use Modules\Cetaklabel\Entities\SpecialCode;
use Modules\Cetaklabel\Http\Requests\SpecialCode\StoreSpecialCodeRequest;
use Modules\Cetaklabel\Http\Requests\SpecialCode\UpdateSpecialCodeRequest;
class SpecialCodeController extends Controller
{
public $user;
public function __construct()
{
$this->middleware(function ($request, $next) {
$this->user = Auth::guard('web')->user();
return $next($request);
});
}
/**
* Display a listing of the resource.
*/
public function index(SpecialCodeDataTable $dataTable)
{
if (is_null($this->user) || !$this->user->can('masters.read')) {
abort(403, 'Sorry !! You are Unauthorized to view any master data !');
}
return $dataTable->render('cetaklabel::masters.special-code.index');
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreSpecialCodeRequest $request)
{
if (is_null($this->user) || !$this->user->can('masters.create')) {
abort(403, 'Sorry !! You are Unauthorized to create any master data !');
}
// Validate the request...
$validated = $request->validated();
// Store the Special Code...
if ($validated) {
try {
SpecialCode::create($validated);
echo json_encode(['status' => 'success', 'message' => 'Special Code created successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => 'Special Code created failed.']);
}
return;
}
echo json_encode(['status' => 'error', 'message' => 'Special Code created failed.']);
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
if (is_null($this->user) || !$this->user->can('masters.create')) {
abort(403, 'Sorry !! You are Unauthorized to create any master data !');
}
abort(404);
}
/**
* Display the specified resource.
*/
public function show(SpecialCode $special_code)
{
if (is_null($this->user) || !$this->user->can('masters.read')) {
abort(403, 'Sorry !! You are Unauthorized to view any master data !');
}
abort(404);
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
if (is_null($this->user) || !$this->user->can('masters.update')) {
abort(403, 'Sorry !! You are Unauthorized to update any master data !');
}
$special_code = SpecialCode::find($id);
echo json_encode($special_code);
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateSpecialCodeRequest $request, SpecialCode $special_code)
{
if (is_null($this->user) || !$this->user->can('masters.update')) {
abort(403, 'Sorry !! You are Unauthorized to update any master data !');
}
// Validate the request...
$validated = $request->validated();
// Update the Directorat...
if ($validated) {
try {
$special_code->update($validated);
echo json_encode(['status' => 'success', 'message' => 'Special Code updated successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => 'Special Code updated failed.']);
}
return;
}
echo json_encode(['status' => 'error', 'message' => 'Special Code updated failed.']);
}
/**
* Remove the specified resource from storage.
*/
public function destroy(SpecialCode $special_code)
{
if (is_null($this->user) || !$this->user->can('masters.delete')) {
abort(403, 'Sorry !! You are Unauthorized to delete any master data !');
}
$special_code->delete();
echo json_encode(['status' => 'success', 'message' => 'Special Code deleted successfully.']);
}
}