Laravel display the date the participation was created
public function index()
{
$actones = Actone::orderBy('created_at', 'desc')->paginate(50);
return view('admin.activities.actone.index')->withActones($actones);
}
Laravel display the date the participation was created
public function index()
{
$actones = Actone::orderBy('created_at', 'desc')->paginate(50);
return view('admin.activities.actone.index')->withActones($actones);
}
Laravel display the date the participation was created
@foreach ($actones as $actone)
<div class="card">
<div class="card-content">
<h1>{{$actone->id}}</h1>
<h1>{{$actone->category}}</h1>
<h1>{{$actone->time}}</h1>
<h1>{{$actone->name}}</h1>
<h1>{{date('d/m/Y - H:i', strtotime($actone->created_at))}}</td>
</div>
</div> <!-- end of .card -->
@endforeach
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us