invoiceninja/app/Http/Controllers/ContactController.php

34 lines
531 B
PHP
Raw Normal View History

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
2019-01-27 10:22:57 +11:00
/**
* Class ContactController
* @package App\Http\Controllers
*/
2019-03-29 08:34:58 +11:00
class ContactController extends BaseController
{
2019-01-27 10:22:57 +11:00
/**
* ContactController constructor.
*/
public function __construct()
{
2019-03-29 08:34:58 +11:00
parent::__construct();
$this->middleware('auth:contact');
}
2019-03-29 08:34:58 +11:00
/**
* show dashboard.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('contact.index');
}
}