@lang('db.examples') @lang('system.title.index')
@include('common/error-message')
| @lang('system.command.edit') |
@lang('db.example.id') |
@lang('db.example.name') |
@lang('db.example.price') |
@lang('db.example.author') |
@lang('system.command.delete') |
@foreach($examples as $example)
|
|
{{ sprintf('%04d', $example->id) }} |
{{ $example->name }} |
{{ number_format($example->price) }}@lang('system.unit.yen') |
{{ $example->author }} |
|
@endforeach
@include('common/pagination', ['tables' => $examples])
@include('common/script-sort')
@include('common/script-del_check')
@endsection