for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace App\Http\Controllers\Backend;
use App\Http\Controllers\Controller;
class DashboardController extends Controller
{
public function index()
return view('backend.dashboard.stats')->with(
array(
)
);
}