update v1.0.6

This commit is contained in:
sujitprasad
2016-02-16 22:42:08 +05:30
parent e6b579d67b
commit 073a49a8af
587 changed files with 21487 additions and 22766 deletions

View File

@@ -1,4 +1,7 @@
<?php namespace App\Http\Controllers\Client\helpdesk;
<?php
namespace App\Http\Controllers\Client\helpdesk;
// controllers
use App\Http\Controllers\Controller;
// models
@@ -17,26 +20,27 @@ use Exception;
*/
class WelcomepageController extends Controller {
/**
* Display a listing of the resource.
*
* @return Response
*/
public function get(System $note) {
if(Config::get('database.install')=='%0%') {
return Redirect::route('licence');
}
$notes = $note->get();
foreach ($notes as $note) {
$content = $note->content;
}
return view('themes.default1.client.guest-user.guest', compact('heading', 'content'));
}
/**
* Display a listing of the resource.
*
* @return Response
*/
public function get(System $note) {
if (Config::get('database.install') == '%0%') {
return Redirect::route('licence');
}
$notes = $note->get();
foreach ($notes as $note) {
$content = $note->content;
}
return view('themes.default1.client.guest-user.guest', compact('heading', 'content'));
}
public function index() {
if(Config::get('database.install')=='%0%') {
return Redirect::route('licence');
}
public function index() {
if (Config::get('database.install') == '%0%') {
return Redirect::route('licence');
}
return view('themes.default1.client.helpdesk.guest-user.index');
}
}