@extends('layouts.main') @push('nav_title') User @endpush @section('page_title')

Users List

@endsection @section('main_div')
@foreach($users as $user) @endforeach
Name Email Password Phone no Address Budget Action
{{$user->name}} {{$user->email}} {{$user->password}} {{$user->phone}} {{$user->address}} {{$user->budget}}$ |
@endsection