@extends('layouts.cork') @section('title', $title) @section('page-css') @endsection @section('breadcrumb')
@endsection @section('content')
@can('create', App\Models\Equipment::class) Add Equipment Bulk Create @endcan
@foreach ($equipment as $item) @endforeach
ID Name Tag Department Status Actions
{{ $item->id }} {{ $item->name }} {{ $item->asset_tag }} {{ $item->department?->name ?? 'N/A' }} {{ !$item->getCurrentCheckout() ? 'Checked In' : 'Checked Out' }}
@if (!$item->getCurrentCheckout()) @else @endif
@endsection @section('page-js') @endsection