2015-08-16 15:11:21 -04:00
|
|
|
<?php
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
namespace BookStack\Http\Controllers;
|
2015-08-16 15:11:21 -04:00
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
2015-09-10 14:31:09 -04:00
|
|
|
use BookStack\Http\Requests;
|
|
|
|
use BookStack\Http\Controllers\Controller;
|
|
|
|
use BookStack\Repos\BookRepo;
|
|
|
|
use BookStack\Services\ActivityService;
|
|
|
|
use BookStack\Services\Facades\Activity;
|
2015-08-16 15:11:21 -04:00
|
|
|
|
|
|
|
class HomeController extends Controller
|
|
|
|
{
|
|
|
|
|
|
|
|
protected $activityService;
|
|
|
|
protected $bookRepo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* HomeController constructor.
|
|
|
|
* @param ActivityService $activityService
|
2015-08-29 10:03:42 -04:00
|
|
|
* @param BookRepo $bookRepo
|
2015-08-16 15:11:21 -04:00
|
|
|
*/
|
|
|
|
public function __construct(ActivityService $activityService, BookRepo $bookRepo)
|
|
|
|
{
|
|
|
|
$this->activityService = $activityService;
|
|
|
|
$this->bookRepo = $bookRepo;
|
2015-08-29 10:03:42 -04:00
|
|
|
parent::__construct();
|
2015-08-16 15:11:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the homepage.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$books = $this->bookRepo->getAll();
|
|
|
|
$activity = $this->activityService->latest();
|
|
|
|
return view('home', ['books' => $books, 'activity' => $activity]);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|