@extends('layouts.master') @section('css') @section('title') {{__('home.customerList')}} @stop @endsection @section('page-header')
@endsection @section('content') @if (session('success'))

{{ session('success') }}
@endif
@foreach (App\Models\customers::get() as $user) @endforeach
# {{__('home.clietName')}} {{__('users.email')}} {{__('home.phone')}} {{__('home.Location')}} {{__('home.creditsales')}}
{{ $i}}
{{ $user->name}}
{{ $user->email }} {{ $user->phone }} {{ $user->address }} {{ $user->Balance }}

@endsection @section('js') @endsection