AugustoPinheiro / Who-Paid-99-Clone-with-Slim

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Who Paid 99¢ Clone with Slim

Demo Project of Who Paid 99¢ Clone with Slim

Controllers

Web Routes

<?php

use App\Controllers\HomeController;
use App\Controllers\PaymentIndexController;
use App\Controllers\PaymentStoreController;

$app->get('/', HomeController::class);

$app->post('/payments', PaymentStoreController::class);
$app->get('/payments', PaymentIndexController::class);

About


Languages

Language:PHP 53.2%Language:Twig 42.3%Language:JavaScript 2.7%Language:Shell 1.3%Language:CSS 0.6%