aboutsummaryrefslogtreecommitdiffhomepage
path: root/infrastructure/Api/Controllers/DefaultApiController.php
blob: 1bb11bf35ec2fe0ba609ab9af0815945c919ff82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Infrastructure\Api\Controllers;

use Infrastructure\Http\Controller as BaseController;
use Infrastructure\Version;

class DefaultApiController extends BaseController
{
    public function index()
    {
        return response()->json([
            'message'   => 'Welcome to the official Texx API'
        ]);
    }
}