@extends('backend.layout.master') @section('title','Users-list') @section('content') @if(Session::get('success')) @endif @if(Session::get('updated')) @endif @if(Session::get('delete')) @endif @if(Session::get('error')) @endif

User List

@foreach($users as $user) @endforeach
S.No User email blogs created at Actions
S.No User email blogs created at Actions
{{$num++}} {{$user->name ?? ''}} {{$user->email ?? '' }} {{ count($user->blogs) ?? '' }} {{$user->created_at ?? '' }} Delete
`
@endsection @section('script') @endsection