Rubenwouters\CrmLauncher\Models\Log::scopeLatestLog PHP Method

scopeLatestLog() public method

* |-------------------------------------------------------------------------- | Scopes |-------------------------------------------------------------------------- | | Relationships of Log model |
public scopeLatestLog ( $query, $type )
    public function scopeLatestLog($query, $type)
    {
        return $query->where('case_type', $type)->orderBy('id', 'DESC')->first()->created_at;
    }