CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Http\Requests\StoreFinancialTransactionLedgerHeadRequest;
use App\Http\Requests\UpdateFinancialTransactionLedgerHeadRequest;
use App\Models\FinancialTransactionLedgerHead;
class FinancialTransactionLedgerHeadController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \App\Http\Requests\StoreFinancialTransactionLedgerHeadRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreFinancialTransactionLedgerHeadRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\FinancialTransactionLedgerHead $financialTransactionLedgerHead
* @return \Illuminate\Http\Response
*/
public function show(FinancialTransactionLedgerHead $financialTransactionLedgerHead)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\FinancialTransactionLedgerHead $financialTransactionLedgerHead
* @return \Illuminate\Http\Response
*/
public function edit(FinancialTransactionLedgerHead $financialTransactionLedgerHead)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateFinancialTransactionLedgerHeadRequest $request
* @param \App\Models\FinancialTransactionLedgerHead $financialTransactionLedgerHead
* @return \Illuminate\Http\Response
*/
public function update(UpdateFinancialTransactionLedgerHeadRequest $request, FinancialTransactionLedgerHead $financialTransactionLedgerHead)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\FinancialTransactionLedgerHead $financialTransactionLedgerHead
* @return \Illuminate\Http\Response
*/
public function destroy(FinancialTransactionLedgerHead $financialTransactionLedgerHead)
{
//
}
}