created master data: rayon, cost centre, kategori

This commit is contained in:
Jagad R R
2024-12-12 18:18:26 +07:00
parent 8cf94b5a5e
commit 095c2169c5
38 changed files with 1249 additions and 17 deletions
@@ -0,0 +1,45 @@
<?php
namespace App\Http\Controllers\Forms;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use App\Models\FormUpCountry;
use App\Models\Rayon;
class FormUpCountryController extends Controller
{
public function index()
{
return view('backend.pages.forms.upcountry.index');
}
public function create()
{
return view('backend.pages.forms.upcountry.create', [
'rayons' => Rayon::all()
]);
}
public function store()
{
}
public function edit()
{
return view('backend.pages.forms.upcountry.edit', [
'rayons' => Rayon::all()
]);
}
public function update()
{
}
public function destroy()
{
}
}