Does your migration for the Event model have a $table->timestamps() or $table->nullableTimestamps() method call in it? If so, you may access the timestamps like so:
$event = Event::find($event_id);
echo $event->updated_at;
//also, there's:
echo $event->created_at;
If you don't have those in your Event migration, you can add them easily following the instructions here. Create a new add_timestamps_to_events_table migration with php artisan make:migration add_timestamps_to_events_table --table=events and something like this ought to do the trick:
Schema::table('events', function (Blueprint $table) {
$table->timestamps();
});
Run the migration with php artisan migrate and you'll have your created_at and updated_at fields on your events. Nothing to do in your controllers when saving/creating...Laravel handles setting these fields automatically out of the box.