@extends('layouts.admin') @section('page_title', 'اظلاعات کاربران') @section('content')

{{-- جدول با Data Table--}}

@foreach($customers as $customer) @endforeach
ردیف نام و نام خانوادگی موبایل کد ملی شهر استان آدرس
{{$loop->index+1}} {{$customer->name.' '.$customer->last_name}} {{$customer->mobile}} {{$customer->national_code}} {{$customer->city->name}} {{$customer->city->province->name}} {{$customer->address}}
@endsection