| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @extends('admin.layout.master')
- @section('main_content')
- @include('admin.layout.nav')
- @include('admin.layout.sidebar')
- <div class="main-content">
- <section class="section">
- <div class="section-header justify-content-between">
- <h1>Messages</h1>
- </div>
- <div class="section-body">
- <div class="row">
- <div class="col-12">
- <div class="card">
- <div class="card-body">
- <div class="table-responsive">
- <table class="table table-bordered" id="example1">
- <thead>
- <tr>
- <th>SL</th>
- <th>User Photo</th>
- <th>User Name</th>
- <th>User Email</th>
- <th>User Phone</th>
- <th>Action</th>
- </tr>
- </thead>
- <tbody>
- @foreach($messages as $item)
- <tr>
- <td>{{ $loop->iteration }}</td>
- <td>
- @if($item->user->photo != '')
- <img src="{{ asset('uploads/'.$item->user->photo) }}" alt="" class="w_100">
- @else
- <img src="{{ asset('uploads/default.png') }}" alt="" class="w_100">
- @endif
- </td>
- <td>
- {{ $item->user->name }}
- </td>
- <td>
- {{ $item->user->email }}
- </td>
- <td>
- {{ $item->user->phone }}
- </td>
- <td class="pt_10 pb_10">
- <a href="{{ route('admin_message_detail',$item->id) }}" class="btn btn-primary">Messages</a>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- </div>
- @endsection
|