Feature #11 : Hubungan Penghuni Jaminan

This commit is contained in:
Daeng Deni Mardaeni
2024-08-14 16:50:25 +07:00
parent 6ea250470d
commit feff1d0316
10 changed files with 490 additions and 1 deletions

View File

@@ -0,0 +1,47 @@
<?php
namespace Modules\Lpj\Exports;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\WithColumnFormatting;
use Maatwebsite\Excel\Concerns\WithHeadings;
use Maatwebsite\Excel\Concerns\WithMapping;
use Modules\Lpj\Models\HubunganPenghuniJaminan;
use PhpOffice\PhpSpreadsheet\Style\NumberFormat;
class HubunganPenghuniJaminanExport implements WithColumnFormatting, WithHeadings, FromCollection, withMapping
{
public function collection()
{
return HubunganPenghuniJaminan::all();
}
public function map($row)
: array
{
return [
$row->id,
$row->name,
$row->created_at
];
}
public function headings()
: array
{
return [
'ID',
'Hubungan Penghuni Jaminan',
'Created At'
];
}
public function columnFormats()
: array
{
return [
'A' => NumberFormat::FORMAT_NUMBER,
'C' => NumberFormat::FORMAT_DATE_DATETIME
];
}
}

View File

@@ -0,0 +1,149 @@
<?php
namespace Modules\Lpj\Http\Controllers;
use App\Http\Controllers\Controller;
use Exception;
use Illuminate\Http\Request;
use Maatwebsite\Excel\Facades\Excel;
use Modules\Lpj\Exports\HubunganPenghuniJaminanExport;
use Modules\Lpj\Http\Requests\HubunganPenghuniJaminanRequest;
use Modules\Lpj\Models\HubunganPenghuniJaminan;
class HubunganPenghuniJaminanController extends Controller
{
public $user;
public function index()
{
return view('lpj::hubungan_penghuni_jaminan.index');
}
public function store(HubunganPenghuniJaminanRequest $request)
{
$validate = $request->validated();
if ($validate) {
try {
// Save to database
HubunganPenghuniJaminan::create($validate);
return redirect()
->route('basicdata.hubungan-penghuni-jaminan.index')
->with('success', 'Hubungan Penghuni Jaminan created successfully');
} catch (Exception $e) {
return redirect()
->route('basicdata.hubungan-penghuni-jaminan.create')
->with('error', 'Failed to create hubungan penghuni jaminan');
}
}
}
public function create()
{
return view('lpj::hubungan_penghuni_jaminan.create');
}
public function edit($id)
{
$hubunganPenghuniJaminan = HubunganPenghuniJaminan::find($id);
return view('lpj::hubungan_penghuni_jaminan.create', compact('hubunganPenghuniJaminan'));
}
public function update(HubunganPenghuniJaminanRequest $request, $id)
{
$validate = $request->validated();
if ($validate) {
try {
// Update in database
$hubunganPenghuniJaminan = HubunganPenghuniJaminan::find($id);
$hubunganPenghuniJaminan->update($validate);
return redirect()
->route('basicdata.hubungan-penghuni-jaminan.index')
->with('success', 'Hubungan Penghuni Jaminan updated successfully');
} catch (Exception $e) {
return redirect()
->route('basicdata.hubungan-penghuni-jaminan.edit', $id)
->with('error', 'Failed to update hubungan penghuni jaminan');
}
}
}
public function destroy($id)
{
try {
// Delete from database
$hubunganPenghuniJaminan = HubunganPenghuniJaminan::find($id);
$hubunganPenghuniJaminan->delete();
echo json_encode(['success' => true, 'message' => 'Hubungan Penghuni Jaminan deleted successfully']);
} catch (Exception $e) {
echo json_encode(['success' => false, 'message' => 'Failed to delete hubungan penghuni jaminan']);
}
}
public function dataForDatatables(Request $request)
{
if (is_null($this->user) || !$this->user->can('hubungan_penghuni_jaminan.view')) {
//abort(403, 'Sorry! You are not allowed to view users.');
}
// Retrieve data from the database
$query = HubunganPenghuniJaminan::query();
// Apply search filter if provided
if ($request->has('search') && !empty($request->get('search'))) {
$search = $request->get('search');
$query->where(function ($q) use ($search) {
$q->where('name', 'LIKE', "%$search%");
});
}
// Apply sorting if provided
if ($request->has('sortOrder') && !empty($request->get('sortOrder'))) {
$order = $request->get('sortOrder');
$column = $request->get('sortField');
$query->orderBy($column, $order);
}
// Get the total count of records
$totalRecords = $query->count();
// Apply pagination if provided
if ($request->has('page') && $request->has('size')) {
$page = $request->get('page');
$size = $request->get('size');
$offset = ($page - 1) * $size; // Calculate the offset
$query->skip($offset)->take($size);
}
// Get the filtered count of records
$filteredRecords = $query->count();
// Get the data for the current page
$data = $query->get();
// Calculate the page count
$pageCount = ceil($totalRecords / $request->get('size'));
// Calculate the current page number
$currentPage = 0 + 1;
// Return the response data as a JSON object
return response()->json([
'draw' => $request->get('draw'),
'recordsTotal' => $totalRecords,
'recordsFiltered' => $filteredRecords,
'pageCount' => $pageCount,
'page' => $currentPage,
'totalCount' => $totalRecords,
'data' => $data,
]);
}
public function export()
{
return Excel::download(new HubunganPenghuniJaminanExport, 'hubungan_penghuni_jaminan.xlsx');
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace Modules\Lpj\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class HubunganPenghuniJaminanRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules()
: array
{
$rules = [
'name' => 'required|max:255',
];
return $rules;
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize()
: bool
{
return true;
}
}

View File

@@ -0,0 +1,9 @@
<?php
namespace Modules\Lpj\Models;
class HubunganPenghuniJaminan extends Base
{
protected $table = 'hubungan_penghuni_jaminan';
protected $fillable = ['name','authorized_at','authorized_status','authorized_by'];
}