2013-11-26 13:45:07 +01:00
|
|
|
<?php
|
|
|
|
|
2014-03-05 21:19:12 +01:00
|
|
|
use ninja\mailers\Mailer;
|
|
|
|
|
2013-11-26 13:45:07 +01:00
|
|
|
class HomeController extends BaseController {
|
|
|
|
|
|
|
|
protected $layout = 'master';
|
2014-03-05 21:19:12 +01:00
|
|
|
protected $mailer;
|
|
|
|
|
|
|
|
public function __construct(Mailer $mailer)
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->mailer = $mailer;
|
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
|
|
|
|
public function showWelcome()
|
|
|
|
{
|
2013-12-07 19:45:00 +01:00
|
|
|
return View::make('splash');
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|
2014-01-02 14:21:15 +01:00
|
|
|
|
2014-02-26 17:08:40 +01:00
|
|
|
public function showAboutUs()
|
|
|
|
{
|
|
|
|
return View::make('about_us');
|
|
|
|
}
|
|
|
|
|
2014-02-26 17:50:27 +01:00
|
|
|
public function showContactUs()
|
|
|
|
{
|
|
|
|
return View::make('contact_us');
|
|
|
|
}
|
|
|
|
|
2014-03-05 21:19:12 +01:00
|
|
|
public function doContactUs()
|
|
|
|
{
|
|
|
|
$email = Input::get('email');
|
|
|
|
$name = Input::get('name');
|
|
|
|
$message = Input::get('message');
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'name' => $name,
|
|
|
|
'email' => $email,
|
|
|
|
'text' => $message
|
|
|
|
];
|
|
|
|
|
|
|
|
$this->mailer->sendTo('contact@invoiceninja.com', 'contact@invoiceninja.com', 'Invoice Ninja Feedback', 'contact', $data);
|
|
|
|
|
|
|
|
Session::flash('message', 'Successfully sent message');
|
|
|
|
return Redirect::to('/contact');
|
|
|
|
}
|
|
|
|
|
2014-01-08 21:09:47 +01:00
|
|
|
public function showComingSoon()
|
|
|
|
{
|
|
|
|
return View::make('coming_soon');
|
|
|
|
}
|
|
|
|
|
2014-01-02 14:21:15 +01:00
|
|
|
public function logError()
|
|
|
|
{
|
2014-01-09 00:22:56 +01:00
|
|
|
return Utils::logError(Input::get('error'), 'JavaScript');
|
2014-01-02 14:21:15 +01:00
|
|
|
}
|
2013-11-26 13:45:07 +01:00
|
|
|
}
|