@extends('common/main/layout') @section('content')

@lang('db.billings') @lang('system.title.index')

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