@extends('dashboard.layout.layout') @section('content')
{!! $customers->links() !!}
{{-- --}} @foreach ($customers as $customer) {{-- --}} @endforeach
#{!! trans('dashboard.customer.logo') !!}{!! trans('dashboard.customer.name') !!} {!! trans('dashboard.customer.address') !!} {!! trans('dashboard.customer.tax_number') !!} {!! trans('dashboard.general.added_date') !!} {!! trans('dashboard.general.control') !!}
{{ $loop->iteration }} {{ $customer->name }} {{ $customer->address ? $customer->address : trans('dashboard.general.no_data') }} {{ $customer->tax_number ? $customer->tax_number : trans('dashboard.general.no_data') }}
{{ $customer->created_at }}
{!! $customers->links() !!}
@include('dashboard.layout.delete_modal') @endsection @include('dashboard.customer.styles') @include('dashboard.customer.scripts')