@extends('layouts.app') @section('content')
| {{ __('app.date') }} | {{ __('app.name') }} | {{ __('app.paid') ?? 'Paid' }} | {{ __('app.actions') }} |
|---|---|---|---|
| {{ $h->date->format('Y-m-d') }} | {{ $h->name }} | {{ $h->is_paid ? __('app.yes') : __('app.no') }} | {{ __('app.edit') }} |