@extends('layouts.backend.app') @section('content') @include('layouts.backend.partials.headersection',['title'=>'All Customers'])
@csrf
@foreach($users as $row) @endforeach
{{ __('Vendor ID') }} {{ __('Avatar') }} {{ __('Name') }} {{ __('Email') }} {{ __('Created at') }} {{ __('View') }}
{{ $row->id }} {{ $row->name }} {{ $row->email }} {{ $row->created_at->format('Y-F-d') }}
{{ __('Vendor ID') }} {{ __('Avatar') }} {{ __('Name') }} {{ __('Email') }} {{ __('Created at') }} {{ __('View') }}
{{ $users->links() }}
@endsection @section('script') @endsection