@extends('layouts.base')
@section('content')
@section('title', trans('售后地址列表'))
| key |
地址 |
是否默认 |
操作 |
@foreach ( $list as $dispatch )
| {{ $dispatch['key'] }} |
{{ $dispatch['address'] }} |
@if($dispatch['isDefault'] == 1)
是
@else
否
@endif
|
@if($dispatch['isDefault'] == 0)
@endif
|
@endforeach
{!! $pager !!}
@endsection