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