I'm a Laravel newbie. I'm working with a package called Confide. It has an error which I'm trying to identify using the Log function. When I call the Log function I get an exception
Class 'Zizaco\Confide\Log' not found
when I include use Illuminate\Log;
I get an error message
Class 'Illuminate\Log' not found
What am I doing wrong? I have run composer dump-auto -o but there is no change
Here is a section of my code
<?php namespace Zizaco\Confide;
use Illuminate\Log;
use Illuminate\View\Environment;
use Illuminate\Config\Repository;
use InvalidArgumentException;
use Zizaco\Confide\ObjectProvider;
class Confide
{
and the code that causes an error is:
Log::info('The value is '.$token);