Everything's all wired up; just need to clean up all the FIXME's and stuff

This commit is contained in:
Brady Wetherington
2023-02-28 18:36:52 -08:00
parent 53db266b69
commit 2f94bf96ff
11 changed files with 95 additions and 145 deletions
@@ -1,22 +0,0 @@
<?php
namespace App\Http\Controllers;
use App\Http\Transformers\ImportsTransformer;
use App\Models\Asset;
use App\Models\Import;
class ImportsController extends Controller
{
/**
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
* @throws \Illuminate\Auth\Access\AuthorizationException
*/
public function index()
{
$this->authorize('import');
// $imports = (new ImportsTransformer)->transformImports(Import::latest()->get());
return view('importer/import'); //->with('imports', $imports);
}
}