Skip to content

Commit 9d2da4d

Browse files
Merge pull request #776 from mvdnbrk/fix-formatiing
Fix formatting of README.md
2 parents d86017b + 01b1529 commit 9d2da4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/spatie/laravel-activitylog/run-tests?label=tests)
55
[![Total Downloads](https://img.shields.io/packagist/dt/spatie/laravel-activitylog.svg?style=flat-square)](https://packagist.org/packages/spatie/laravel-activitylog)
66

7-
The `spatie/laravel-activitylog` package provides easy to use functions to log the activities of the users of your app. It can also automatically log model events.
7+
The `spatie/laravel-activitylog` package provides easy to use functions to log the activities of the users of your app. It can also automatically log model events.
88
The Package stores all activity in the `activity_log` table.
99

1010
Here's a demo of how you can use it:
@@ -26,7 +26,7 @@ activity()
2626
->causedBy($user)
2727
->withProperties(['customProperty' => 'customValue'])
2828
->log('Look, I logged something');
29-
29+
3030
$lastLoggedActivity = Activity::all()->last();
3131

3232
$lastLoggedActivity->subject; //returns an instance of an eloquent model

0 commit comments

Comments
 (0)