@extends('layouts.main') @push('styles') @endpush @section('content')
{{ __('fixed_assets.export_to_pdf') }}
| {{ __('fixed_assets.asset_name') }} | {{ __('fixed_assets.serial_number') }} | {{ __('fixed_assets.cost_price') }} | {{ __('fixed_assets.acquisition_date') }} | {{ __('fixed_assets.description') }} | {{ __('fixed_assets.warranty_expiry') }} | {{ __('fixed_assets.item_condition') }} | {{ __('fixed_assets.supplier') }} | {{ __('fixed_assets.payment_type') }} | ||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $fixed_asset->name }} | {{ $fixed_asset->serial_number }} | {{ ugandan_shillings($fixed_asset->cost_price) }} | {{ $fixed_asset->acquisition_date }} | {{ $fixed_asset->description }} | {{ $fixed_asset->warranty_expiration_date }} | {{ $fixed_asset->item_condition == 1 ? 'New' : 'Used' }} | {{ isset($suppliers[$fixed_asset->supplier_id]) ? $suppliers[$fixed_asset->supplier_id] : "" }} | @switch($fixed_asset->payment_type) @case("cash") Cash/EFT/Cheque @break @case("bill") Bill @break @case("asset_exists") Already existing asset @break @default @endswitch | @if(Auth::user()->can('edit-fixed-assets')) {{ __('fixed_assets.edit') }} @endif | @if(Auth::user()->can('delete-fixed-assets')) {{ Form::model($fixed_asset->id ,['method' => 'DELETE', 'route' => ['fixed_assets.destroy', $fixed_asset->id]]) }} {{ Form::close() }} @endif |
| {{ __('family_accounts.total') }} | {{ ugandan_shillings($total_fixed_assets_value) }} | |||||||||