Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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);
    }
 
PREVIOUS NEXT
Tagged: #Laravel #display #date #participation #created
ADD COMMENT
Topic
Name
6+4 =