当前位置: 首页>>代码示例>>PHP>>正文


PHP Branch::whereIn方法代码示例

本文整理汇总了PHP中app\Branch::whereIn方法的典型用法代码示例。如果您正苦于以下问题:PHP Branch::whereIn方法的具体用法?PHP Branch::whereIn怎么用?PHP Branch::whereIn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在app\Branch的用法示例。


在下文中一共展示了Branch::whereIn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: exportPdf

 public function exportPdf($ids = null)
 {
     $ids = explode(',', substr($ids, 0, -1));
     $ids = array_unique($ids);
     $model = Branch::whereIn('id', $ids)->where('user_id', \Auth::user()->id)->get(['id', 'nom_branche', 'code_branche']);
     Excel::create('La liste des Branches', function ($excel) use($model, $ids) {
         $excel->sheet('La liste des Branches', function ($sheet) use($model, $ids) {
             foreach ($model as $branch) {
                 $branch->nbr = $branch->children()->count();
                 unset($branch->id);
             }
             $sheet->fromModel($model);
             $sheet->setAllBorders('thin');
             $sheet->setFontFamily('OpenSans');
             $sheet->setFontSize(13);
             $sheet->setFontBold(false);
             $sheet->setAllBorders('thin');
             for ($i = 1; $i <= count($ids) + 1; $i++) {
                 $sheet->setHeight($i, 25);
                 $sheet->row($i, function ($rows) {
                     $rows->setFontColor('#556b7b');
                     $rows->setAlignment('center');
                 });
                 $sheet->cells('A' . $i . ':' . 'C' . $i, function ($cells) {
                     $cells->setValignment('middle');
                     $cells->setFontColor('#556b7b');
                     $cells->setFont(array('family' => 'OpenSans', 'size' => '13', 'bold' => false));
                 });
             }
             // normal header
             $sheet->cells('A1:C1', function ($cells) {
                 $cells->setBackground('#e9f1f3');
                 $cells->setFontColor('#556b7b');
                 $cells->setFont(array('family' => 'OpenSans', 'size' => '15', 'bold' => true));
             });
             $sheet->row(1, array('Nom de la Branche', 'Code de La Branche', "Nombre d'élèves"));
         });
     })->export('pdf');
 }
开发者ID:khaleader,项目名称:creche,代码行数:39,代码来源:BranchesController.php


注:本文中的app\Branch::whereIn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。