forked from miguel456/rbrecruiter
Miguel N
3bd773e2d3
This commit adds the main page (incl. breadcrumbs), a license file, a contact form (with recaptcha) and a captcha config file.
17 lines
175 B
PHP
17 lines
175 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
|
|
|
|
public function index()
|
|
{
|
|
return view('home');
|
|
}
|
|
|
|
}
|