@section('title', __('Customers')) @extends('layouts.print') @section('content')
@foreach ($data as $row) @endforeach
{{ __('Name') }} {{ __('Email') }} {{ __('Phone') }} {{ __('City') }} {{ __('Country') }}
{{ $row->name }} {{ $row->email }} {{ $row->phone }} {{ $row->city }} {{ $row->country }}
@endsection