PHP Classes

File: resources/views/todo/todo.blade.php

Recommend this page to a friend!
  Classes of Ahmed Khan   Laravel Todo App   resources/views/todo/todo.blade.php   Download  
File: resources/views/todo/todo.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Todo App
Manage lists of tasks to be done by the users
Author: By
Last change:
Date: 2 years ago
Size: 681 bytes
 

Contents

Class file image Download
@extends('layouts.app')
@section('title', title_case($todo->todo))
@section('content')
<div class="row">
        <div class="col-md-6">
           <div class="panel panel-primary">
              <div class="panel-heading"><h3>{{title_case($todo->todo)}} <a href="{{url('/todo/'.$todo->id).'/edit'}}" class="btn btn-warning btn-group-sm pull-right ">Edit</a></h3>
              </div>
                  <div class="panel-body">
                    {{$todo->description}}
                  </div>
              <div class="panel-footer"><strong>Category:</strong> {{$todo->category}}</div>
              </div>
              
        </div>
      </div>
           
@endsection