@extends('admin.layouts.app') {{-- Custom CSS & JS --}} @section('custom-css') @endsection @section('content')
{{-- User details --}}

{{ $user_details->name }}

{{ $user_details->email == '' ? __('Not Available') : $user_details->email }}
{{ $user_details->role_id == 2 ? __('Customer') : '' }}
{{-- OPTIMIZE --}} @if (env('APP_TYPE') == 'OPTIMIZE' || env('APP_TYPE') == 'BOTH')
{{ __('Optimize Images') }}
@if (!empty($optimers) && $optimers->count()) {{-- Optimize Images --}} @foreach ($optimers as $optimer)
{{ strlen($optimer->name) > 20 ? substr($optimer->name, 0, 20) . '...' : $optimer->name }}
{{ __('Uploaded on:') }} {{ formatDateForUser($optimer->created_at) }}
@endforeach @else

{{ __('No optimize images found') }}

{{ __('Try adjusting your add to find what you are looking for.') }}

@endif {{-- Pagination --}}
{{ $optimers->links() }}
@endif
@include('admin.includes.footer')
{{-- User login modal --}} {{-- Custom JS --}} @section('custom-js') @endsection @endsection