@extends('layouts.master') @section('title','Assets Lists') @section('action','Lists') @section('button') @can('create_assets') @endcan @endsection @section('main-content')
@include('admin.section.flash_message') @include('admin.assetManagement.assetDetail.common.breadcrumb')
@canany(['show_asset','edit_assets','delete_assets']) @endcanany @forelse($assetLists as $key => $value) @empty @endforelse
# Name Type Purchased Date Is Working Is AvailableAction
{{++$key}} {{ucfirst($value->name)}} {{ucfirst($value->type->name)}} {{\App\Helpers\AppHelper::formatDateForView($value->purchased_date)}} {{ucfirst($value->is_working)}}
    @can('edit_assets')
  • @endcan @can('show_asset')
  • @endcan @can('delete_assets')
  • @endcan

No records found!

{{$assetLists->appends($_GET)->links()}}
@endsection @section('scripts') @include('admin.assetManagement.assetDetail.common.scripts') @endsection