Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace App\Http\Controllers;use App\Http\Requests\StorePaymentTargetRequest;use App\Http\Requests\UpdatePaymentTargetRequest;use App\Models\PaymentTarget;class PaymentTargetController 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\StorePaymentTargetRequest $request* @return \Illuminate\Http\Response*/public function store(StorePaymentTargetRequest $request){//}/*** Display the specified resource.** @param \App\Models\PaymentTarget $paymentTarget* @return \Illuminate\Http\Response*/public function show(PaymentTarget $paymentTarget){//}/*** Show the form for editing the specified resource.** @param \App\Models\PaymentTarget $paymentTarget* @return \Illuminate\Http\Response*/public function edit(PaymentTarget $paymentTarget){//}/*** Update the specified resource in storage.** @param \App\Http\Requests\UpdatePaymentTargetRequest $request* @param \App\Models\PaymentTarget $paymentTarget* @return \Illuminate\Http\Response*/public function update(UpdatePaymentTargetRequest $request, PaymentTarget $paymentTarget){//}/*** Remove the specified resource from storage.** @param \App\Models\PaymentTarget $paymentTarget* @return \Illuminate\Http\Response*/public function destroy(PaymentTarget $paymentTarget){//}}