@extends('themes.default1.admin.layout.admin') @section('Manage') class="active" @stop @section('manage-bar') active @stop @section('help') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content')

{{Lang::get('lang.help_topic')}}

{{Lang::get('lang.create_help_topic')}}
@if(Session::has('success'))
Success! {!! Session::get('success') !!}
@endif @if(Session::has('fails'))
Fail! {!! Session::get('fails') !!}
@endif first(); $default_helptopic = $default_helptopic->help_topic; ?> @foreach($topics as $topic) priority)->first(); ?> @if($topic->department != null) department)->first(); $dept = $dept->name; ?> @elseif($topic->department == null) @endif @endforeach
{{Lang::get('lang.topic')}} {{Lang::get('lang.status')}} {{Lang::get('lang.type')}} {{Lang::get('lang.priority')}} {{Lang::get('lang.department')}} {{Lang::get('lang.last_updated')}} {{Lang::get('lang.action')}}
{!! $topic->topic !!} @if($topic->id == $default_helptopic) ( Default ) @else @endif @if($topic->ticket_status=='1') Active @else Disable @endif @if($topic->type=='1') Public @else Private @endif {!! $priority->priority_desc !!} {!! $dept !!} {!! UTC::usertimezone($topic->updated_at) !!} {!! Form::open(['route'=>['helptopic.destroy', $topic->id],'method'=>'DELETE']) !!} Edit {!! Form::button(' Delete', ['type' => 'submit', 'class'=> 'btn btn-warning btn-xs btn-flat '.$disable, 'onclick'=>'return confirm("Are you sure?")']) !!} {!! Form::close() !!}
@stop