diff --git a/Http/Controllers/BranchController.php b/Http/Controllers/BranchController.php index 3e4bac8..b5c032f 100644 --- a/Http/Controllers/BranchController.php +++ b/Http/Controllers/BranchController.php @@ -6,9 +6,6 @@ use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Modules\Writeoff\DataTables\BranchDataTable; - use Modules\Writeoff\Entities\Branch; - use Modules\Writeoff\Http\Requests\Branch\StoreCurrencyRequest; - use Modules\Writeoff\Http\Requests\Branch\UpdateCurrencyRequest; class BranchController extends Controller { @@ -37,68 +34,4 @@ return $dataTable->render('writeoff::parameter.branches.index'); } - - /** - * Store a newly created Branch in storage. - * - * @param \Illuminate\Http\Request $request - * - * @return mixed - */ - public function store(Request $request) - { - } - - /** - * Show the form for creating a new Branch. - */ - public function create() - { - - } - - /** - * Display the specified Branch. - * - * @param \Modules\Writeoff\Entities\Branch $branch - */ - public function show(Branch $branch) - { - - } - - /** - * Show the form for editing the specified Branch. - * - * @param $id - */ - public function edit($id) - { - - } - - /** - * Update the specified Branch in storage. - * - * @param \Illuminate\Http\Request $request - * @param \Modules\Writeoff\Entities\Branch $branch - * - * @return mixed - */ - public function update(Request $request, Branch $branch) - { - - } - - /** - * Remove the specified Branch from storage. - * - * @param \Modules\Writeoff\Entities\Branch $branch - * - * @return void - */ - public function destroy(Branch $branch) - { - - } } diff --git a/Http/Controllers/CurrencyController.php b/Http/Controllers/CurrencyController.php index f784400..3dba43b 100644 --- a/Http/Controllers/CurrencyController.php +++ b/Http/Controllers/CurrencyController.php @@ -6,9 +6,6 @@ use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Modules\Writeoff\DataTables\CurrencyDataTable; - use Modules\Writeoff\Entities\Currency; - use Modules\Writeoff\Http\Requests\Currency\StoreGuaranteeTypeRequest; - use Modules\Writeoff\Http\Requests\Currency\UpdateGuaranteeTypeRequest; class CurrencyController extends Controller { @@ -37,68 +34,4 @@ return $dataTable->render('writeoff::parameter.currencies.index'); } - - /** - * Store a newly created Currency in storage. - * - * @param \Illuminate\Http\Request $request - * - * @return mixed - */ - public function store(Request $request) - { - } - - /** - * Show the form for creating a new Currency. - */ - public function create() - { - - } - - /** - * Display the specified Currency. - * - * @param \Modules\Writeoff\Entities\Currency $currency - */ - public function show(Currency $currency) - { - - } - - /** - * Show the form for editing the specified Currency. - * - * @param $id - */ - public function edit($id) - { - - } - - /** - * Update the specified Currency in storage. - * - * @param \Illuminate\Http\Request $request - * @param \Modules\Writeoff\Entities\Currency $currency - * - * @return mixed - */ - public function update(Request $request, Currency $currency) - { - - } - - /** - * Remove the specified Currency from storage. - * - * @param \Modules\Writeoff\Entities\Currency $currency - * - * @return void - */ - public function destroy(Currency $currency) - { - - } } diff --git a/Http/Controllers/GuaranteeTypeController.php b/Http/Controllers/GuaranteeTypeController.php index ef32373..b13cb15 100644 --- a/Http/Controllers/GuaranteeTypeController.php +++ b/Http/Controllers/GuaranteeTypeController.php @@ -6,7 +6,6 @@ use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; use Modules\Writeoff\DataTables\GuaranteeTypeDataTable; - use Modules\Writeoff\Entities\GuaranteeType; class GuaranteeTypeController extends Controller { @@ -35,68 +34,4 @@ return $dataTable->render('writeoff::parameter.guarantee_types.index'); } - - /** - * Store a newly created GuaranteeType in storage. - * - * @param \Illuminate\Http\Request $request - * - * @return mixed - */ - public function store(Request $request) - { - } - - /** - * Show the form for creating a new GuaranteeType. - */ - public function create() - { - - } - - /** - * Display the specified GuaranteeType. - * - * @param \Modules\Writeoff\Entities\GuaranteeType $branch - */ - public function show(GuaranteeType $branch) - { - - } - - /** - * Show the form for editing the specified GuaranteeType. - * - * @param $id - */ - public function edit($id) - { - - } - - /** - * Update the specified GuaranteeType in storage. - * - * @param \Illuminate\Http\Request $request - * @param \Modules\Writeoff\Entities\GuaranteeType $branch - * - * @return mixed - */ - public function update(Request $request, GuaranteeType $branch) - { - - } - - /** - * Remove the specified GuaranteeType from storage. - * - * @param \Modules\Writeoff\Entities\GuaranteeType $branch - * - * @return void - */ - public function destroy(GuaranteeType $branch) - { - - } }