repat/laravel-database-session-model

Eloquent Model for the sessions table as created by artisan session:table
11,528 1
Install
composer require repat/laravel-database-session-model
Latest Version:0.5
PHP:>=7.4
License:MIT
Last Updated:Apr 2, 2024
Links: GitHub  ·  Packagist
Maintainer: repat

laravel-database-session-model

Latest Version on Packagist Total Downloads

laravel-database-session-model contains an Eloquent model for the sesssions (or config('sessions.table')) as created by the artisan commands sessions:table

Installation

$ composer require repat/laravel-database-session-model

Documentation

Relationship / Attributes

The attribute unserialized_payload returns the payload array, unserialized and base64 decoded. For more information, see the Laravel Documentation on Eloquent Mutators.

The attribute last_activity_at parses the last_activity as a UNIX timestamp.

If you've kept the standard FQCN for Laravels User Model (\App\Model\User::class) you can use the ->user relationship or extend this model and override the user() method.

$session = \Repat\LaravelSessions\Session::first();

// UUID
$session->id; // string

// User
$session->user_id;
$session->user; // App\Models\User, extend the relationship if you have a different FQCN

$session->ip_address; // string
$session->user_agent; // string

// Attributes
$session->unserialized_payload; // array
$session->last_activity_at; // \Carbon\Carbon

License

Version

  • Version 0.5

Contact

repat

Flattr this git repo

Related Packages

repat/laravel-password-reset-model

Eloquent Model for the password_resets table

9,260 1
repat/laravel-migration-model

Eloquent Model for the migrations table

4,079 1
rjacobsen/eloquent-model-generator

Auto-generates all Eloquent models from the database in a Laravel 5 project.

3,016 8
repat/laravel-job-models

Eloquent Models for the tables job and job_fails as created by artisan queue:tab...

28,851 8
shiftonelabs/laravel-cascade-deletes

Adds application level cascading deletes to Eloquent Models.

829,037 165