2020-06-29 07:21:17 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Http\Response;
|
|
|
|
|
|
|
|
class PhoneController extends Controller
|
|
|
|
{
|
2020-08-06 13:31:38 +00:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware(["auth"]);
|
|
|
|
$this->middleware(["lang"]);
|
|
|
|
}
|
|
|
|
|
2020-06-29 07:21:17 +00:00
|
|
|
function index() {
|
|
|
|
return Response::detect("vagttelefons.index");
|
|
|
|
}
|
|
|
|
}
|