initial commits

This commit is contained in:
Daeng Deni Mardaeni
2024-10-28 10:24:57 +07:00
commit a7ec87c995
27 changed files with 425 additions and 0 deletions

View File

View File

@@ -0,0 +1,65 @@
<?php
namespace Modules\Webstatement\Http\Controllers;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
class WebstatementController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view('webstatement::index');
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
return view('webstatement::create');
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Show the specified resource.
*/
public function show($id)
{
return view('webstatement::show');
}
/**
* Show the form for editing the specified resource.
*/
public function edit($id)
{
return view('webstatement::edit');
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy($id)
{
//
}
}