Skip to content

Instantly share code, notes, and snippets.

@i5on9i
Last active August 25, 2018 03:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save i5on9i/3a284b1972374899a0e2194cd1a7b51f to your computer and use it in GitHub Desktop.
Save i5on9i/3a284b1972374899a0e2194cd1a7b51f to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers\Info\Terms;
use Illuminate\Http\Request;
use DB;
use App\Lib\Info\Terms;
use App\Http\Controllers\App\BaseViewController;
class TermsViewController extends BaseViewController
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
public function privacyView(Request $request){
return view('info.terms', [
'data' => json_encode([
'dates' => $dates
])]
);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment