@lang('db.billings') @lang('system.title.index')
@include('common/error-message')
| @lang('system.command.edit') |
@lang('db.billing.id')
| @lang('db.billing.name') |
@lang('db.billing.address') |
@lang('system.command.delete') |
@foreach($billings as $billing)
|
|
{{ $billing->id }} |
{{ $billing->name }} |
{{ Str::limit($billing->zip_code.' '.$billing->address_1.' '.$billing->address_2, 50) }} |
|
@endforeach
@include('common/pagination', ['tables' => $billings])
@include('common/script-sort')
@include('common/script-del_check')
@endsection