What structure for multiple view queries

If I have , example a ‘fees’ model, which is basically data referring to fees of an item, the views/fees/view.php will simply display the data from the table as is.

What happens when you want to have, lets say, 2 or 3 different views for the same model - each view uses a different query to display different results - how does one structure this ? Do you create a whole new model that encapsulates the different queries ? Or do you just use the same model, in this case views/fees, but use a different view.php, eg, view_2.php ? (obviously name it better)

?

Thx

better to use different views of fees as u told.