This commit is contained in:
denisdulici
2017-11-30 11:47:56 +03:00
parent 5a1dec431a
commit 52e2102c03
34 changed files with 1096 additions and 2 deletions

View File

@ -0,0 +1,22 @@
<?php
namespace App\Http\Controllers\Common;
use App\Http\Controllers\Controller;
class Import extends Controller
{
/**
* Show the form for creating a new resource.
*
* @param $group
* @param $type
* @return Response
*/
public function create($group, $type)
{
$path = $group . '/' . $type;
return view('common.import.create', compact('group', 'type', 'path'));
}
}