Cetaklabel/Http/Controllers/DocumentTypeController.php

144 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\DocumentTypeDataTable;
use Modules\CetakLabel\Entities\DocumentType;
use Modules\CetakLabel\Http\Requests\DocumentType\StoreDocumentTypeRequest;
use Modules\CetakLabel\Http\Requests\DocumentType\UpdateDocumentTypeRequest;
class DocumentTypeController 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(DocumentTypeDataTable $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.document-type.index');
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreDocumentTypeRequest $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 Document Type...
if ($validated) {
try {
DocumentType::create($validated);
echo json_encode(['status' => 'success', 'message' => 'Document Type created successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => 'Document Type created failed.']);
}
return;
}
echo json_encode(['status' => 'error', 'message' => 'Document Type 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(DocumentType $document_type)
{
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 !');
}
$document_type = DocumentType::find($id);
echo json_encode($document_type);
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateDocumentTypeRequest $request, DocumentType $document_type)
{
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 {
$document_type->update($validated);
echo json_encode(['status' => 'success', 'message' => 'Document Type updated successfully.']);
} catch (Exception $e) {
echo json_encode(['status' => 'error', 'message' => 'Document Type updated failed.']);
}
return;
}
echo json_encode(['status' => 'error', 'message' => 'Document Type updated failed.']);
}
/**
* Remove the specified resource from storage.
*/
public function destroy(DocumentType $document_type)
{
if (is_null($this->user) || !$this->user->can('masters.delete')) {
abort(403, 'Sorry !! You are Unauthorized to delete any master data !');
}
$document_type->delete();
echo json_encode(['status' => 'success', 'message' => 'Document Type deleted successfully.']);
}
}