$video->getRouteKey(), 'key' => [ 'public' => $video->getPublicKey(), 'route' => $video->getRouteKey(), ], 'id' => $video->id, 'title' => $video->title, 'url' => $video->url, 'description' => $video->description, 'slug' => $video->slug, 'created_at' => $video->created_at, 'deleted_at' => $video->deleted_at, 'updated_at' => $video->updated_at, 'url' => [ 'public' => trans_url('videos/'.$video->getPublicKey()), 'user' => guard_url('videos/video/'.$video->getRouteKey()), ], 'status' => trans('app.'.$video->status), 'created_at' => format_date($video->created_at), 'updated_at' => format_date($video->updated_at), ]; } }