@extends('layout.app')
@section('title', 'Vehicle Component Lifespan')
@push('header_script')
@endpush
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
{{-- Filters --}}
{!! Form::select('vehicle_id', ['' => '-- Select Vehicle --'] + $vehicles, null, [
'class' => 'form-control select2',
'id' => 'vehicle_id',
]) !!}
{!! Form::select('product_id', ['' => '-- Select Product --'] + $products, null, [
'class' => 'form-control select2',
'id' => 'product_id',
]) !!}
| # |
Vehicle No |
Product |
Brand |
Position |
New Unique No |
Old Unique No |
Fitted Date |
Fitted KM |
Removed Date |
Removed KM |
Lifespan Days |
Lifespan KM |
Reusable |
Status |
Actions |
@endsection
@push('footer_script')
@endpush