ok
Direktori : /home2/selectio/public_html/billingsoftwarenew/core/app/Http/Controllers/ |
Current File : //home2/selectio/public_html/billingsoftwarenew/core/app/Http/Controllers/TicketController.php |
<?php namespace App\Http\Controllers; use App\Traits\SupportTicketManager; class TicketController extends Controller { use SupportTicketManager; public function __construct() { parent::__construct(); $this->layout = 'frontend'; $this->middleware(function ($request, $next) { $this->user = auth()->user(); if ($this->user) { $this->layout = 'master'; } return $next($request); }); $this->redirectLink = 'ticket.view'; $this->userType = 'user'; $this->column = 'user_id'; } }