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.
152 lines
4.8 KiB
152 lines
4.8 KiB
<?php |
|
|
|
namespace App\Http\Controllers; |
|
|
|
use App\Models\m_asset; |
|
use App\Models\m_warehouse; |
|
use Illuminate\Http\Request; |
|
use Illuminate\Support\Facades\Auth; |
|
|
|
class M_assetController extends Controller |
|
{ |
|
/** |
|
* Display a listing of the resource. |
|
*/ |
|
public function index() |
|
{ |
|
$asset = m_asset::get(); |
|
$warehouse = m_warehouse::all(); |
|
return view('addons.SettingPlatform.manajement_asset', compact('asset', 'warehouse')); |
|
} |
|
|
|
/** |
|
* Show the form for creating a new resource. |
|
*/ |
|
public function create() |
|
{ |
|
// |
|
} |
|
|
|
/** |
|
* Store a newly created resource in storage. |
|
*/ |
|
// public function store(Request $request) |
|
// { |
|
// $request->validate([ |
|
// 'name' => 'required', |
|
// 'description' => 'required', |
|
// 'warehouse_id' => 'required', |
|
// 'date' => 'required', |
|
// 'qr_count' => 'required', |
|
// ]); |
|
// // dd($request); |
|
// try { |
|
// $currentUser = Auth::user(); |
|
|
|
// $validatedData = $request->except('_token'); |
|
// $validatedData['created_by'] = $currentUser->id; // Menambahkan ID pengguna sebagai created_by |
|
// $validatedData['updated_by'] = $currentUser->id; // Menambahkan ID pengguna sebagai updated_by |
|
// dd($validatedData); |
|
// m_asset::create($validatedData); |
|
// return redirect()->back()->with('success', 'Data barang berhasil ditambah.'); |
|
// } catch (\Throwable $th) { |
|
// return redirect()->back()->with('error', 'Data barang gagal ditambah.'); |
|
// } |
|
// return redirect()->back()->with('success', 'Data barang berhasil ditambah.'); |
|
// } |
|
public function store(Request $request) |
|
{ |
|
// dd($request); |
|
// Mendapatkan produk terbaru |
|
$latestAsset = \App\Models\m_asset::latest()->first(); |
|
// Mendapatkan tahun saat ini |
|
$currentYear = date("Y"); |
|
// Menghitung nomor urut untuk kode barang |
|
if ($latestAsset == null) { |
|
// Kode pertama |
|
$nomorUrut = 1; |
|
} else { |
|
// Kode berikutnya |
|
$lastCode = substr($latestAsset->seri, 7); |
|
$nomorUrut = intval($lastCode) + 1; |
|
} |
|
// Menggabungkan semua komponen kode barang |
|
$seri = 'AST' . $currentYear . str_pad($nomorUrut, STR_PAD_LEFT); |
|
// Validasi input |
|
$request->validate([ |
|
'name' => 'required', |
|
'description' => 'required', |
|
'warehouse_id' => 'required', |
|
'date' => 'required', |
|
'qr_count' => 'required', |
|
]); |
|
try { |
|
$currentUser = Auth::user(); |
|
// Menyiapkan data untuk disimpan |
|
$validatedData = $request->except('_token'); |
|
$validatedData['seri'] = $seri; |
|
$validatedData['created_by'] = $currentUser->id; // Menambahkan ID pengguna sebagai created_by |
|
$validatedData['updated_by'] = $currentUser->id; // Menambahkan ID pengguna sebagai updated_by |
|
// dd($validatedData); |
|
// Menyimpan data ke dalam database |
|
\App\Models\m_asset::create($validatedData); |
|
return redirect()->back()->with('success', 'Data asset berhasil ditambah.'); |
|
} catch (\Throwable $th) { |
|
// dd($th); |
|
return redirect()->back()->with('error', 'Data asset gagal ditambah.'); |
|
} |
|
} |
|
|
|
/** |
|
* Display the specified resource. |
|
*/ |
|
public function show($id) |
|
{ |
|
// dd('oke'); |
|
} |
|
|
|
/** |
|
* Show the form for editing the specified resource. |
|
*/ |
|
public function edit() |
|
{ |
|
// dd('oke'); |
|
} |
|
|
|
/** |
|
* Update the specified resource in storage. |
|
*/ |
|
public function update(Request $request, $id) |
|
{ |
|
// dd('oke'); |
|
$request->validate([ |
|
'name' => 'required', |
|
'description' => 'required', |
|
'warehouse_id' => 'required', |
|
'date' => 'required', |
|
'qr_count' => 'required', |
|
]); |
|
try { |
|
$asset = m_asset::findOrFail($id); |
|
$asset->update($request->all()); |
|
return redirect()->back()->with('success', 'Data asset berhasil diperbaharui'); |
|
} catch (\Throwable $th) { |
|
return redirect()->back()->with('error', 'Data asset gagal diperbaharui'); |
|
} |
|
} |
|
|
|
/** |
|
* Remove the specified resource from storage. |
|
*/ |
|
public function destroy($id) |
|
{ |
|
// dd("oke"); |
|
try { |
|
$asset = m_asset::findOrFail($id); |
|
$asset->delete(); |
|
return redirect()->back()->with('success', 'Data asset berhasil dihapus'); |
|
} catch (\Throwable $th) { |
|
return redirect()->back()->with('error', 'Data asset gagal dihapus'); |
|
} |
|
} |
|
}
|
|
|