I've been trying to get a Twitter wrapper working for this website to display my latest tweets. During this my site suddenly crashed. Nothing showed up. Scouring the internet I came across a post at https://laracasts.com/discuss/channels/laravel/e...
Spending time on errors are extremely time consuming. I’m not sure what the best ways are to speed this up but some ways are to check the basics and read the errors. Sometimes it’s like stepping in the shoes of Sherlock Holmes but usually most of the...
protected function create(array $data)
{
//create confirmation code
$confirmation_code = str_random(30);
//main bulk of user creation
$user = User::create([
'first_name' => $d...