PHPackages                             amdadulhaq/record-activity-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. amdadulhaq/record-activity-laravel

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

amdadulhaq/record-activity-laravel
==================================

User activity for Laravel

v2.1.0(1mo ago)1432MITPHPPHP ^8.2|^8.3|^8.4|^8.5CI failing

Since Dec 10Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/amdad121/record-activity-laravel)[ Packagist](https://packagist.org/packages/amdadulhaq/record-activity-laravel)[ Docs](https://github.com/amdad121/record-activity-laravel)[ GitHub Sponsors](https://github.com/amdad121)[ RSS](/packages/amdadulhaq-record-activity-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (8)Versions (15)Used By (0)

User activity for Laravel
=========================

[](#user-activity-for-laravel)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e0982c7fc4053e01cb926ad78984184d70d2268327e99e3b36768da912708a1d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616d646164756c6861712f7265636f72642d61637469766974792d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/amdadulhaq/record-activity-laravel)[![GitHub Tests Action Status](https://camo.githubusercontent.com/71ad4af2018bc4a87198f6bb930eb27e63eb9674e315281954f37834e9139d68/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f616d6461643132312f7265636f72642d61637469766974792d6c61726176656c2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/amdad121/record-activity-laravel/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/7870e4240f1588066023ade0e23a715fd3074cab083adbe84859f15c12a4be54/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f616d6461643132312f7265636f72642d61637469766974792d6c61726176656c2f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/amdad121/record-activity-laravel/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/1af7764c1a8da9bfc10cbf4ca985ff6361f620a2c2cce6a89f409b76ad96d0e8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616d646164756c6861712f7265636f72642d61637469766974792d6c61726176656c2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/amdadulhaq/record-activity-laravel)

created by, updated by and deleted by added on model of your Laravel.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require amdadulhaq/record-activity-laravel
```

Usage
-----

[](#usage)

Open your migration file and add this table column. both are optional.

```
Schema::create('users', function (Blueprint $table) {
    // ...
    $table->withHasCreatorAndUpdater();
    $table->withHasDeleter();
});
```

Now this traits add on your model and add fillable property.

```
