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