10
30
100
Search
Reset
@forelse ($accounts as $account) @empty @endforelse
ID
NAME
CITY
STATE
ZIP CODE
PHONE
WEBSITE
{{ $account->id}}
{{ $account->account_name}}
{{ $account->city }}
{{ $account->state }}
{{ $account->zip }}
{{ $account->phone }}
{{ $account->website }}
Edit
Delete
No Account found.
@if($accounts->lastPage() > 1)
Showing {{ $accounts->firstItem() }} to {{ $accounts->lastItem() }} of {{ $accounts->total() }} results
@if ($accounts->onFirstPage())
‹
@else
‹
@endif @for ($i = 1; $i <= $accounts->lastPage(); $i++)
{{ $i }}
@endfor @if ($accounts->hasMorePages())
›
@else
›
@endif
@endif
Loading...