<buttontype="button"[disabled]="!canEditCustomer()"(click)="this.router.navigate(['customers/create'])"class="btn btn-primary"><spanclass="fe fe-file-plus fe-12 mr-2"></span>إضافة جهة جديدة</button>
</div>
</div>
<divclass="row">
<divclass="row"*ngIf="!customers">
<item-skeletonclass="col-4 offset-1">
</item-skeleton>
</div>
<divclass="row"*ngIf="customers">
<customer-item(click)="this.router.navigate(['customers/detail',cust.id])"*ngFor="let cust of customers"class="col-md-3"[customer]="cust"></customer-item>