added sender ID to the clients Tab in Show view plus bug fixes
This commit is contained in:
@@ -5,13 +5,16 @@ namespace App\Http\Controllers;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
use App\Models;
|
||||
use Spatie\Activitylog\Models\Activity;
|
||||
// use Illuminate\Contracts\Mail\Mailer;
|
||||
|
||||
|
||||
|
||||
class UtilityController extends Controller
|
||||
{
|
||||
|
||||
public function underconstruction(){
|
||||
return view('utility.underconstruction');
|
||||
}
|
||||
public function EmailTest(Mailer $mailer)
|
||||
{
|
||||
|
||||
@@ -28,6 +31,11 @@ class UtilityController extends Controller
|
||||
$message->to($emails)->subject('New Notes');
|
||||
});
|
||||
}
|
||||
/**
|
||||
* maptest function to display the map view.
|
||||
*
|
||||
* @return Illuminate\View\View
|
||||
*/
|
||||
public function maptest(){
|
||||
|
||||
return view('utility.map');
|
||||
@@ -111,5 +119,31 @@ class UtilityController extends Controller
|
||||
}
|
||||
dump($count_cl);
|
||||
}
|
||||
function loggingTest(){
|
||||
$rando = uniqid();
|
||||
|
||||
$newsItem = Models\Utility::create([
|
||||
'name' => 'original name : ' . $rando,
|
||||
'type' => 'Lorum'
|
||||
]);
|
||||
$activity = Activity::all()->last();
|
||||
|
||||
dump($activity->description); //returns 'created'
|
||||
dump($activity->subject); //returns the instance of NewsItem that was created
|
||||
dump($activity->changes); //returns ['attributes' => ['name' => 'original name', 'text' => 'Lorum']];
|
||||
//
|
||||
$rando = uniqid();
|
||||
|
||||
$newsItem->name = 'updated name to something like this ' . $rando;
|
||||
$newsItem->type = 'franko';
|
||||
$newsItem->save();
|
||||
|
||||
//updating the newsItem will cause an activity being logged
|
||||
$activity_up = Activity::all()->last();
|
||||
dump($activity_up);
|
||||
dump($activity_up->description); //returns 'updated'
|
||||
dump($activity_up->subject); //returns the instance of NewsItem that was created
|
||||
dump($activity_up->changes);
|
||||
}
|
||||
}
|
||||
// https://www.tokyvideo.com/video/sheena-the-queen-of-the-jungle-1984-movie-with-tanya-roberts-ted-wass-donovan-scott
|
||||
|
||||
Reference in New Issue
Block a user