CasperSecurity
<?php
namespace App\Http\Controllers;
use App\Http\Requests\StoreFinancialTransactionRequest;
use App\Http\Requests\UpdateFinancialTransactionRequest;
use App\Models\FinancialTransaction;
class FinancialTransactionController 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\StoreFinancialTransactionRequest $request
* @return \Illuminate\Http\Response
*/
public function store(StoreFinancialTransactionRequest $request)
{
//
}
/**
* Display the specified resource.
*
* @param \App\Models\FinancialTransaction $financialTransaction
* @return \Illuminate\Http\Response
*/
public function show(FinancialTransaction $financialTransaction)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param \App\Models\FinancialTransaction $financialTransaction
* @return \Illuminate\Http\Response
*/
public function edit(FinancialTransaction $financialTransaction)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \App\Http\Requests\UpdateFinancialTransactionRequest $request
* @param \App\Models\FinancialTransaction $financialTransaction
* @return \Illuminate\Http\Response
*/
public function update(UpdateFinancialTransactionRequest $request, FinancialTransaction $financialTransaction)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param \App\Models\FinancialTransaction $financialTransaction
* @return \Illuminate\Http\Response
*/
public function destroy(FinancialTransaction $financialTransaction)
{
//
}
}