| Total Complexity | 7 |
| Total Lines | 55 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class AdminController extends Controller |
||
| 10 | { |
||
| 11 | public function __construct() |
||
| 12 | { |
||
| 13 | $this->middleware('auth'); |
||
| 14 | } |
||
| 15 | |||
| 16 | // Admin landing page |
||
| 17 | public function index() |
||
| 20 | } |
||
| 21 | |||
| 22 | // Display all file links |
||
| 23 | public function userLinks() |
||
| 26 | } |
||
| 27 | |||
| 28 | // Get the number of links for each user |
||
| 29 | public function countLinks() |
||
| 53 | } |
||
| 54 | |||
| 55 | // Show the links for the selected user |
||
| 56 | public function showLinks($id) |
||
| 67 |