@@ -83,7 +83,7 @@ public static function infolist(Schema $schema): Schema
83
83
TextEntry::make ('type ' )
84
84
->label (__ ('Type ' ))
85
85
->badge ()
86
- ->color (fn (EventType $ state ): string => match ($ state ) {
86
+ ->color (fn (EventType $ state ): string => match ($ state ) {
87
87
EventType::DELIVERED => 'success ' ,
88
88
EventType::CLICKED => 'clicked ' ,
89
89
EventType::OPENED => 'info ' ,
@@ -131,7 +131,7 @@ public static function infolist(Schema $schema): Schema
131
131
->default (__ ('Unknown ' ))
132
132
->label (__ ('User Agent ' ))
133
133
->limit (50 )
134
- ->tooltip (fn ($ state ) => $ state ),
134
+ ->tooltip (fn ($ state ) => $ state ),
135
135
]),
136
136
]),
137
137
Section::make (__ ('Location ' ))
@@ -160,7 +160,7 @@ public static function infolist(Schema $schema): Schema
160
160
->default (__ ('Unknown ' ))
161
161
->label (__ ('Link ' ))
162
162
->limit (50 )
163
- ->url (fn ($ state ) => $ state )
163
+ ->url (fn ($ state ) => $ state )
164
164
->openUrlInNewTab (),
165
165
TextEntry::make ('tag ' )
166
166
->default (__ ('Unknown ' ))
@@ -209,7 +209,7 @@ public static function table(Table $table): Table
209
209
->label (__ ('Type ' ))
210
210
->sortable ()
211
211
->badge ()
212
- ->color (fn (EventType $ state ): string => match ($ state ) {
212
+ ->color (fn (EventType $ state ): string => match ($ state ) {
213
213
EventType::DELIVERED => 'success ' ,
214
214
EventType::CLICKED => 'clicked ' ,
215
215
EventType::OPENED => 'info ' ,
@@ -230,7 +230,7 @@ public static function table(Table $table): Table
230
230
->label (__ ('Occurred At ' ))
231
231
->dateTime ('d-m-Y H:i ' )
232
232
->since ()
233
- ->tooltip (fn (MailEvent $ record ) => $ record ->occurred_at ->format ('d-m-Y H:i ' ))
233
+ ->tooltip (fn (MailEvent $ record ) => $ record ->occurred_at ->format ('d-m-Y H:i ' ))
234
234
->sortable ()
235
235
->searchable (),
236
236
])
0 commit comments