seocomp / payroll_custom_view
A Laravel Nova resource tool.
0.0.1
2021-12-30 14:06 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2025-04-29 01:27:01 UTC
README
composer require seocomp/payroll_custom_view
a nova resource tool to provide a custom table view
with three methods
//table row values values ->rowsValues([ [row 1 values], [row 2 values], [row 3 values], . . . . ])
//table headings values
->titles([ hd, hd, hd, hd, hd .....
])
// title for view ->title($title = '')
example:
PayrollCustomView::make()->rowsValues($this->reportDetailsPage())
->titles([
'Supervied Employee',
'Type',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
])->title($this->title())
->onlyOnDetail(),
