@extends('admin.layouts.master') @section('title', 'All Message - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('All Message') }} @endslot @slot('menu1') {{ __('All Message') }} @endslot @slot('button')
@can('contact-us.manage') {{ __('Add Reason') }} @endcan
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('AllMessage') }}
@foreach($items as $item) @endforeach
# {{ __('Name') }} {{ __('Phone') }} {{ __('Email') }} {{ __('Message') }} {{ __('Reason') }} {{ __('Action') }}
1 {{$item->fname}} {{$item->mobile}} {{$item->email}} {{ str_limit($item->message, $limit = 50, $end = '...') }} {{ str_limit($item->reason, $limit = 50, $end = '...') }}


@endsection @section('script') @endsection