Taking time off is wonderful until the moment you open your email after returning to work. If you work in an email-heavy company, you may have received hundreds of emails while you were out of the office, and now you’re faced with the difficult task of sorting through each one. With Outlook’s clean-up function (introduced in Outlook 2010), you can drastically reduce the number of emails you have to deal with in just a few clicks—whether you're coming back from vacation or you just have too many emails piled up. The clean-up function removes all email replies that are duplicated in a later thread, allowing you to read a single thread instead of dozens of individual emails. To clean up your inbox quickly:
In the same fashion you can turn on and off you video camera. You can either use the meeting setup panel (item 2 above) to disable your camera; or simply use the meeting control panel to enable video again.
Unfortunately, not all emails in the workplace come with an unsubscribe link. Day after day, emails arrive in your inbox that are just a distraction. Some common examples include:
If you spend a lot of time typing the same answers to questions you get repeatedly, create Quick Parts to insert that text into email replies in just a few clicks. No need to keep typing the same thing over and over again or having to find an old response to copy and paste. When you’ve finished typing a response that you expect to need to send again, follow the steps below to save the text as a Quick Part:
Need to zoom in for specific details using iPhone? You no longer need to open the Camera app and use digital zoom. iOS 15 now comes with a new Magnifier app. As the name suggests, you can use it to zoom in on elements, text, use a bunch of filters, flashlight, play with the brightness slider, and more.
Spotlight Search also gets a major boost with new features. Spotlight uses intelligence to search photos by location, people, scenes, or objects. Using Live Text, Spotlight can also find text and handwriting in photos. Spotlight now offers web image search and all-new rich results for actors, musicians, TV shows, and movies. The good news is, you can access all these goodies right from the iPhone lock screen. Use the same swipe-down gesture from the lock screen, and Spotlight Search is ready to serve you.
If you use Teams for video meetings, this might sound familiar. Your home office is a mess and you need to join this video call. Two solutions for that: first off, you can use the Background Settings function (item 3 above) to blur your video background right on from the meeting setup or the meeting controls. The second solution is way more elegant : use a virtual background (we’ll go through the process later). If for some reason, the Background setting button seems inactive in the Meeting Setup panel; make sure you turn on your video camera first.
Let’s say you have Post belonging to Author and then Blade code:
1{{ $post->author->name }}
But what if the author is deleted, or isn’t set for some reason? You will get an error, something like “property of non-object”. Of course, you can prevent it like this:
1{{ $post->author->name ?? '' }}
But you can do it on Eloquent relationship level:
1public function author()2{3 return $this->belongsTo('App\Author')->withDefault();4}
In this example, the author() relation will return an empty App\Author model if no author is attached to the post. Furthermore, we can assign default property values to that default model.
1public function author()2{3 return $this->belongsTo('App\Author')->withDefault([4 'name' => 'Guest Author'5 ]);6}
Imagine you have this:
1function getFullNameAttribute()2{3 return $this->attributes['first_name'] . ' ' . $this->attributes['last_name'];4}
Now, you want to order by that full_name? This won’t work:
1$clients = Client::orderBy('full_name')->get(); // doesn't work
The solution is quite simple. We need to order the results after we get them.
1$clients = Client::get()->sortBy('full_name'); // works!
Notice that the function name is different – it’s not orderBy, it’s sortBy.
If you’ve had success with the previous Outlook tips and are interested in getting into more advanced email management, it’s time to take a look at Quick Steps. Quick Steps allow you to automatically perform long strings of actions based on a trigger. Say at the end of the month you receive a series of invoices from vendors or contractors. Your normal process is to review the invoices, forward the invoices to your accountant, and create a reminder to follow up with the accountant a week later to make sure the invoices were paid. Quick Steps can take care of the last two steps for you with fewer clicks than if you performed the tasks manually: