@extends('layouts.master') @section('title','Show Asset Types') @section('action','Show Asset Type Detail') @section('button')
@endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.assetManagement.types.common.breadcrumb')
@forelse($assetTypeDetail->assets as $key => $value) @empty @endforelse
# Asset Name Purchased Date Is Working Is Available
{{++$key}} {{ucfirst($value->name)}} {{\App\Helpers\AppHelper::formatDateForView($value->purchased_date)}} {{ucfirst($value->is_working)}} {{ isset($value->is_available) && $value->is_available == 1 ? 'Yes':'No'}}

No records found!

@endsection