Examples of code I've written in PHP, Javascript, SCSS, etc.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace App\Http\Controllers;
-
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\Log;
- use App\Models\Service;
-
- class ServiceController extends Controller
- {
- public function getServices(Request $request) {
- return Service::all();
- }
- }
|