skip to Main Content

Update data with laravel

The problem arises when I use the "save" method to save the data, as it returns as undefined, this is the code : public function profile() { return view('profile.edit', ['user' => Auth::user()]); } public function update(Request $request) { $request->validate([ 'fullName'…

VIEW QUESTION

Asp.net – Date Format COrrect

How can I modify the displayed date format in my database view to exclude the timestamp (00:00:00) and show only the date in the format (DD/MM/YYYY)? <td>@marks["Test_Date"]</td> I am fetching date here and i have tried like this <td>@((DateTime)marks["Test_Date"]).ToString("dd/MM/yyyy")</td> It…

VIEW QUESTION
Back To Top
Search