[WIP] Finish the order process
This commit is contained in:
@@ -12,13 +12,21 @@ class CustomersDataTable extends DataTable
|
||||
|
||||
public function query(Customer $model)
|
||||
{
|
||||
$model = $model->with('addresses');
|
||||
return $this->buildQuery($model);
|
||||
}
|
||||
|
||||
protected function getColumns()
|
||||
{
|
||||
return [
|
||||
Column::make('company')->title('Société'),
|
||||
Column::make('last_name')->title('Nom'),
|
||||
Column::make('first_name')->title('Prénom'),
|
||||
Column::make('address')->title('Adresse'),
|
||||
Column::make('zipcode')->title('Code postal'),
|
||||
Column::make('city')->title('Ville'),
|
||||
Column::make('phone')->title('Téléphone'),
|
||||
Column::make('email')->title('Email'),
|
||||
$this->makeColumnButtons(),
|
||||
];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user