@extends('layouts.app')
@section('urlContent')
{!! view('components.breadcrumbs', [
'b_items' => [
'Destek Taleplerim' => '/support/index',
],
]) !!}
@endsection
@section('content')
@if ($tickets)
@foreach ($tickets as $ticket)
{{ route('support.detailSupportRequestIndex', ['ticket' => $ticket['id']]) }}
{{ route('support.closeToSupportRequest', ['ticket' => $ticket['id']]) }}
@endforeach
@endif
@if ($tickets)
@if (count($tickets) <= 0)
Hiç Veri Bulunamadı
@else
{{ count($tickets) }}
@endif
@endif
@if ($errors->any())
@include('components.error-modal-second')
@endif
@if (session('error'))
@include('components.error-modal')
@endif
@if (session('success'))
@include('components.success-modal')
@endif
@endsection