@extends('layouts.table')
@section('title', trans('warehouse.title'))
@section('create_url', route('warehouse.create'))
@section('before_table')
@endsection
@section('thead')
{{ trans('warehouse.name') }} |
{{ trans('lang.status') }} |
{{ 'คงเหลือ' }} |
{{ 'รายละเอียด' }} |
@endsection
@section('tbody')
@foreach($list as $d)
{{ $d->name }} |
{!! badge_status($d->status) !!} |
{{ $d->stock }} |
รายละเอียด
|
@endforeach
@endsection