@extends('layouts.backend') @section('title', '| User Profile Edit Requests') @section('css') @endsection @section('content')
| Request ID | User Name | User Contact | Note | Action | |
|---|---|---|---|---|---|
| {{ $request->id }} | {{ $request->user->name ?? '' }} | {{ $request->user->phone }} | {{ $request->user->email }} | {{-- *Author : Gurupriya Solanki *Description : Note Content lenght with Read more and Read Less *Updated Date : 28 June 2024 --}} @php $note = $request->note ?? 'null'; $maxLength = 60; // Adjust the truncation length as needed $shortNote = strlen($note) > $maxLength ? substr($note, 0, $maxLength) . '...' : $note; $isLongNote = strlen($note) > $maxLength; @endphp {{ $shortNote }} @if ($isLongNote) {{ substr($note, $maxLength) }} Read more @endif |
@if($request->status == "close")
Close
@else
|