Progress und aber auch Über uns

This commit is contained in:
2026-03-24 00:33:53 +01:00
parent 58472b28ca
commit 87c7193686
6 changed files with 55 additions and 7 deletions

View File

@@ -9,10 +9,19 @@ use Illuminate\Support\Facades\Auth;
class TickerController extends Controller
{
public function showEditTicker(){
public function deleteTicker(Request $request){
if(Auth::check()){
}
abort(404);
}
public function addTicker(Request $request){
if(Auth::check()){
}
abort(404);
}
public static function getTicker(){
$t = "";