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

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

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