Siopas Inventory PETI for ISTW Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

114 lines
3.1 KiB

1 year ago
<?php
namespace App\Http\Controllers;
use App\Models\Peti;
1 year ago
use App\Models\m_asset;
use App\Models\m_warehouse;
use App\Models\asset_status;
1 year ago
use Illuminate\Http\Request;
1 year ago
use Illuminate\Support\Facades\Auth;
1 year ago
class PengembalianController extends Controller
{
public function index()
{
11 months ago
$data = [
'peminjaman' => asset_status::all(),
11 months ago
'active' => 'menu-pengembalian',
];
return view('dashboard.Pengembalian.index', $data);
1 year ago
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show($id)
{
}
/**
* Show the form for editing the specified resource.
*/
11 months ago
public function edit($id)
1 year ago
{
11 months ago
$data = [
'peti' => Peti::get(),
11 months ago
'peminjaman' => asset_status::findOrFail($id),
'warehouse' => m_warehouse::get(),
'active' => 'menu-pengembalian',
];
return view('dashboard.Pengembalian.edit', $data);
1 year ago
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $id)
{
$request->validate([
'asset_id' => 'required',
'exit_at' => 'required',
'exit_pic' => 'required',
'enter_at' => 'required',
'enter_pic' => 'required',
'enter_warehouse' => 'required',
]);
11 months ago
1 year ago
try {
$peminjaman = asset_status::findOrFail($id);
$peminjaman['updated_by'] = Auth::user()->fullname; // Menambahkan ID pengguna sebagai updated_by
1 year ago
$peminjaman->update($request->all());
11 months ago
return redirect()->route('dashboard.pengembalian.index')->with('success', 'Data peminjaman berhasil diperbaharui');
1 year ago
} catch (\Throwable $th) {
11 months ago
// Tampilkan pesan kesalahan untuk debugging
return redirect()->back()->with('error', 'Data peminjaman gagal diperbaharui: ' . $th->getMessage());
1 year ago
}
}
11 months ago
// public function update(Request $request, $id)
// {
// $request->validate([
// 'asset_id' => 'required',
// 'exit_at' => 'required',
// 'exit_pic' => 'required',
// 'enter_at' => 'required',
// 'enter_pic' => 'required',
// 'enter_warehouse' => 'required',
// ]);
// try {
// $peminjaman = asset_status::findOrFail($id);
11 months ago
// $peminjaman['updated_by'] = Auth::user()->fullname; // Menambahkan ID pengguna sebagai updated_by
// $peminjaman->update($request->all());
// return redirect()->route('pengembalian.index')->with('success', 'Data peminjaman berhasil diperbaharui');
// } catch (\Throwable $th) {
// return redirect()->back()->with('error', 'Data peminjaman gagal diperbaharui');
// }
// }
1 year ago
/**
* Remove the specified resource from storage.
*/
public function destroy($id)
{
// dd("oke");
1 year ago
}
}