New-site/app/Http/Controllers/LinksController.php

19 lines
299 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Link;
class LinksController extends Controller
{
public function index(){
return $this->getAll();
}
public function getAll(){
$links = new Link();
return $links->all();
}
}