Refactor many request related methods into (complex) trait.

This commit is contained in:
James Cole
2018-08-09 17:46:14 +02:00
parent 4f697e77d5
commit 9865800e39
18 changed files with 480 additions and 390 deletions

View File

@@ -96,7 +96,8 @@ class IndexController extends Controller
}
$paginator = new LengthAwarePaginator($recurring, $total, $pageSize, $page);
$paginator->setPath(route('recurring.index'));
return view('recurring.index', compact('paginator', 'page', 'pageSize','total'));
return view('recurring.index', compact('paginator', 'page', 'pageSize', 'total'));
}
/**