@extends('Layout::app') @push('css') @endpush @section('content') @include('Support::frontend.layouts.topic.search-form')
{{__("Ticket name")}}
{{__("Last reply")}}
{{__("Status")}}
@foreach($rows as $ticket) @include('Support::frontend.layouts.ticket.loop') @endforeach
{{$rows->appends(request()->query())->links()}} @if($rows->total() > 0) {{ __("Showing :from - :to of :total tickets",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} @endif
@if(!count($rows))
{{__("No ticket found")}}
@endif
@include('Support::frontend.layouts.ticket.sidebar')
@endsection