i want to create a kanban with start timer

first of all , i 'am working with laravel and sql server and my application is about management project so, i need a kanban of tasks have start date and deadline date with time tracking


1 Reply 1 reply marked as answer

BS Buvana Sathasivam Syncfusion Team May 17, 2021 12:55 PM UTC

Hi Si Achraf ben Mohamed, 

Thanks for using Syncfusion product. 

We have analyzed your requirement and prepared a simple sample based on SQL server with Laravel and Angular Kanban board. We have provided a card template for displaying the date into cards. 

app.component.html 
<ejs-kanban #kanbanObj> 
………. 
<ng-template #cardSettingsTemplate let-data> 
  <div class='e-card-content'> 
      <table class="card-template-wrap"> 
          <tbody> 
              <tr> 
                  <td class="CardHeader">Id:</td> 
                  <td>{{data.Id}}</td> 
              </tr> 
              <tr> 
                  <td class="CardHeader">Assignee:</td> 
                  <td>{{data.Assignee}}</td> 
              </tr> 
              <tr> 
                  <td class="CardHeader">Start Date:</td> 
                  <td>{{data.StartDate.date}}</td> 
              </tr> 
              <tr> 
                  <td class="CardHeader">End Date:</td> 
                  <td>{{data.EndDate.date}}</td> 
              </tr> 
          </tbody> 
      </table> 
  </div> 
</ng-template> 
</ejs-kanban> 

Find the below sample for your reference. 

In the above sample, paste the Kanban_Angular_App file into htdocs folder and Kanban_PHP file into inside the Laravel folder. 

Kindly try the above sample and let us know if you need further assistance. 

Regards, 
Buvana S 


Marked as answer
Loader.
Up arrow icon