PATH:
home
/
lab2454c
/
tripvare.com
/
resources
/
views
/
admin
/
dashboard
@extends('layouts.admin.dashboard') @section('content') <div class="inner__body__wrapp faq__wrap"> @include('validation.flashmessage') <div class="list__header__wrapp"> <h2>{{ __('Contact Lists')}}</h2> </div> <div class="table-responsive"> <table class="table table-sm"> <thead> <tr> <th scope="col">{{ __('Name')}}</th> <th scope="col">{{ __('Email')}}</th> <th scope="col">{{ __('Phone')}}</th> <th scope="col">{{ __('Message')}}</th> </tr> </thead> <tbody> @forelse($contacts as $contact) <tr class="manage__user__data__table"> <td>{{ $contact->fullname }}</th> <td>{{ $contact->email }}</th> <td>{{ $contact->phone }}</th> <td>{{ $contact->message }}</td> {{-- <td>{!! \Illuminate\Support\Str::words($contact->message, 50,'...') !!}</td> --}} </tr> @empty <td colspan="4">No Contacts Listed</td> @endforelse </tbody> </table> {!! $contacts->links('pagination::bootstrap-4') !!} </div> </div> @endsection
[-] manage_reward.blade.php
[edit]
[-] change_password.blade.php
[edit]
[+]
..
[-] manage_settings.blade.php
[edit]
[+]
manage_navigation
[-] contacts.blade.php
[edit]
[+]
legal_consent
[+]
manage_corporate_users
[+]
dynamic_pages
[+]
banner_images
[+]
manage_users
[+]
checklist_content
[+]
vaccination_review_content
[+]
manage_gallery
[+]
manage_help
[+]
social_links
[+]
manage_pages
[+]
manage_copyright
[-] manage_profile.blade.php
[edit]
[-] dashboard_landing.blade.php
[edit]