lundi 30 septembre 2019

Laravel records not geting as dynamic

views/show.blade.php

@extends('layouts.app')
@section('content')
<h5>Showing Task </h5>
<div class="jumbotron text-center">
   <p>
      <strong>Task Title:</strong> <br>
      <strong>Description:</strong> 
   </p>
</div>
@endsection

Controllers/HomeController.php

public function show(Task $task)
{
   return view('show', compact('task', $task));
}

routes/web.php

Route::get('show/{id}', 'HomeController@show')->name('show');

views/viewalltask.blade.php

<td><a href=""></a></td>

No error / No Record / instead of particulr record display blank page



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/2mgn3vB
via IFTTT

Aucun commentaire:

Enregistrer un commentaire