@extends('layouts/default')
{{-- Page title --}}
@section('title')
{{ $component->name }}
{{ trans('general.component') }}
@parent
@stop
@section('header_right')
@endsection
@section('content')
@can('update', $snipe_component)
@endcan
{{ trans('general.files') }}
{{ trans('general.history') }}
@can('components.files', Component::class)
@include ('modals.upload-file', ['item_type' => 'component', 'item_id' => $component->id])
@endcan
@endsection
@section('moar_scripts')
@include ('partials.bootstrap-table', ['exportFile' => 'component' . $component->name . '-export', 'search' => false])
@stop