title = 'Facturation'; $this->params['breadcrumbs'][] = 'Administration' ; $this->params['breadcrumbs'][] = $this->title; ?>

Facturation

$datas_factures, 'columns' => [ [ 'attribute' => 'reference', 'label' => 'Référence', ], [ 'attribute' => 'id_etablissement', 'label' => 'Établissement', 'value' => function($model) { return Html::encode($model->etablissement->nom) ; } ], 'libelle', [ 'attribute' => 'montant_ht', 'label' => 'Montant', 'value' => function($model) { return number_format($model->montant_ht,2).' €' ; } ], [ 'attribute' => 'paye', 'label' => 'Payé', 'format' => 'raw', 'value' => function($model) { if($model->paye) { return 'Oui' ; } else { return 'Non' ; } } ] ], ]); ?>