# Resource Day Header Render Hooks

In Resource DayGrid and Resource TimeGrid views, a "resource day header" is the cell in the column header that displays a resource's name.

`resourceDayHeaderAlign` - horizontal alignment of the content. Accepts `'start'`, `'center'`, or `'end'`. Theme decides the default. In a left-to-right locale, `'start'` means left and `'end'` means right.

`resourceDayHeaderClass` - a [ClassName Input](classname-input.md)

`resourceDayHeaderInnerClass` - a [ClassName Input](classname-input.md) for the inner wrapper of the resource day header. Useful for adjusting padding.

`resourceDayHeaderContent` - a [Content Injection Input](content-injection.md)

`resourceDayHeaderDidMount`

`resourceDayHeaderWillUnmount`


## Argument

When the above hooks are specified as a function in the form `function(info)`, the `info` is an object with the following properties:

- `resource` - [Resource Object](resource-object.md)
- `date` - if the column is scoped to a particular date, this will be the Date object
- `text`
- `isOther`
- `isToday`
- `isPast`
- `isFuture`
- `isDisabled`
- `isNarrow`
- `isMajor`
- `level`
- `el` - the element. only available in `resourceDayHeaderDidMount` and `resourceDayHeaderWillUnmount`
