task.blade.php 287 B

123456789101112131415161718192021
  1. @extends('master')
  2. @section('title', 'task->title')
  3. @section('content')
  4. <style type="text/css">
  5. .margin {
  6. margin-left: 5%;
  7. }
  8. </style>
  9. <center>
  10. <h1 >You can handle it!</h1> </center>
  11. <div class="margin">
  12. <p>
  13. <h3>{{$task->title}}</h3>
  14. <p>{{$task->content}}</p>
  15. </div>
  16. @endsection