@extends('layouts.user') @section('user-content') @php $tickets =\App\Models\Contact::where('user_id',auth()->user()->id)->orderBy('id','DESC')->paginate(12); @endphp @if(is_countable($tickets) && count($tickets)==0)
تواصل معنا في أي وقت اذا احتجت أي مساعدة
@else
تذكرة جديدة
@foreach($tickets as $ticket)
{{$ticket->id}}
{{\Carbon::parse($ticket->created_at)->diffForHumans()}}
@endforeach
{{$tickets->links()}}
@endif @endsection