@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ $consumable->name }}
{{ trans('general.consumable') }} -
({{ trans('general.remaining_var', ['count' => $consumable->numRemaining()]) }})
@parent
@endsection
@section('header_right')
@endsection
{{-- Page content --}}
@section('content')
@endsection
@section('moar_scripts')
@can('files', $consumable)
@include ('modals.upload-file', ['item_type' => 'consumables', 'item_id' => $consumable->id])
@endcan
@include ('partials.bootstrap-table', ['exportFile' => 'consumable-' . $consumable->name . '-export', 'search' => false])
@endsection