Add AdminSupportController

This commit is contained in:
Daniel Supernault 2019-06-09 00:19:18 -06:00
parent 6cbd9bbea0
commit f5b4362368
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -0,0 +1,12 @@
<?php
namespace App\Http\Controllers\Admin;
use Cache, DB;
use Illuminate\Http\Request;
use App\{Contact, Like, Media, Page, Profile, Report, Status, User};
trait AdminSupportController
{
}