public function actionIndex($id)
{
$model = new Livings('search');
$model->order_id = $id;
$model->search();
$model->unsetAttributes();
if(isset($_GET['Livings']))
$model->attributes=$_GET['Livings'];
$this->render('admin',
[
'model'=>$model,
]);
}