server/src/app/Http/Controllers/Controller.php
author ymh <ymh.work@gmail.com>
Mon, 17 Oct 2016 19:46:57 +0200
changeset 348 a5e8d037304b
parent 27 a2342f26c9de
permissions -rw-r--r--
Solve language display problem in result playlist. problem was in the mirage serializer definition

<?php

namespace CorpusParole\Http\Controllers;

use Illuminate\Foundation\Bus\DispatchesJobs;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;

abstract class Controller extends BaseController
{
    use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
}