@foreach (['danger', 'warning', 'success', 'info'] as $msg)
@if(Session::has('alert-' . $msg))
{{ Session::get('alert-' . $msg) }}
×
@endif
@endforeach
| No. |
Name |
Address1 |
Address2 |
City |
State |
Country |
Zip |
Phone |
Is Primary |
Action |
@if($coustomer->isNotEmpty())
@foreach ($coustomer as $u)
| {{ $loop->index + 1 }} |
{{ $u->name }} |
{{ $u->street_name }} |
{{ !empty($u->street_app_unit) ? $u->street_app_unit : "-" }} |
{{ $u->city }} |
{{ $u->state }} |
{{ $u->country }} |
{{ $u->zip }} |
{{ $u->phone }} |
@if($u->is_primary == 1)
Yes
@else
No
@endif
|
|
@endforeach
@else
| No Address Found.... |
@endif