|
|
@@ -1,5 +1,5 @@
|
|
|
@extends('layouts.app')
|
|
|
-@section('title')物流公司@endsection
|
|
|
+@section('title')承运商@endsection
|
|
|
|
|
|
@section('content')
|
|
|
<span id="nav2">
|
|
|
@@ -15,8 +15,12 @@
|
|
|
<table class="table table-striped table-sm" id="list">
|
|
|
<tr>
|
|
|
<th>ID</th>
|
|
|
- <th>物流公司名</th>
|
|
|
- <th>物流公司代码</th>
|
|
|
+ <th>承运商名称</th>
|
|
|
+ <th>承运商代码</th>
|
|
|
+ <th>承运商联系方式</th>
|
|
|
+ <th>承运商类型</th>
|
|
|
+ <th>承运商送货费</th>
|
|
|
+ <th>备注</th>
|
|
|
<th>创建时间</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
@@ -24,6 +28,10 @@
|
|
|
<td class="text-muted">@{{logistic.id}}</td>
|
|
|
<td>@{{logistic.name}}</td>
|
|
|
<td>@{{logistic.code}}</td>
|
|
|
+ <td>@{{logistic.mobile}}</td>
|
|
|
+ <td>@{{logistic.type}}</td>
|
|
|
+ <td>@{{logistic.delivery_fee}}</td>
|
|
|
+ <td>@{{logistic.remark}}</td>
|
|
|
<td class="text-muted">@{{logistic.created_at}}</td>
|
|
|
<td>
|
|
|
@can('物流公司-编辑')
|
|
|
@@ -46,7 +54,9 @@
|
|
|
data:{
|
|
|
logistics:[
|
|
|
@foreach( $logistics as $logistic )
|
|
|
- {id:'{{$logistic->id}}',name:'{{$logistic->name}}',code:'{{$logistic->code}}',created_at:'{{$logistic->created_at}}'},
|
|
|
+ {id:'{{$logistic->id}}',name:'{{$logistic->name}}',code:'{{$logistic->code}}',
|
|
|
+ mobile:"{{$logistic->mobile}}",type:"{{$logistic->type}}",delivery_fee:"{{$logistic->delivery_fee}}",
|
|
|
+ remark:"{{$logistic->remark}}",created_at:'{{$logistic->created_at}}'},
|
|
|
@endforeach
|
|
|
],
|
|
|
},
|