@extends('layouts.adminpanel') @section('title', 'Users') @section('title_right_section') Add new @endsection @section('content')
{!! csrf_field() !!}
{{ $data->links() }}
@if($search) Search results for: {{ $search }}. @endif
Showing {{ number_format($data->firstItem()) }} - {{ number_format($data->lastItem()) }} out of {{ $data->total() }}
{{----}} @if(count($data) > 0) @foreach($data as $record) {{-- --}} {{-- --}} @endforeach @else @endif
Name EmailStatusActions
{{ $record->name .' '. $record->lname }}{{ $record->name .' '. $record->lname }} {{ $record->email }}{{ ucfirst($record->status) }}
No record found.
@stop @section('footer_space') @stop