id = $id; $this->item = $item; $this->status = $status; $this->fromDate = $fromDate; $this->toDate = $toDate; $this->province_id = $province_id; $this->edarat_id = $edarat_id; } public function view(): View { $fromDate = $this->fromDate ? $this->fromDate . ' 00:00:00': null; $toDate = $this->toDate ? $this->toDate . ' 23:59:59': null; $status = $this->status; // $data = RoadItemsProject::where('is_new', 1) // ->where('user_id', auth()->user()->id) // ->when($this->id, function($query, $id){ // return $query->where('id', $id); // }) // ->when($this->item, function($query, $item){ // return $query->where('item', $item); // }) // ->when(!is_null($status), function($query) use ($status){ // return $query->where('status', $status); // }) // ->when(($fromDate && $toDate), function($query) use($fromDate, $toDate){ // return $query->whereBetween('activity_date_time', [$fromDate, $toDate]); // }) // ->select('id', 'item', 'item_fa', 'sub_item', 'sub_item_fa', 'sub_item_data', 'unit_fa', 'start_lat', 'start_lng', 'end_lat', 'end_lng', // 'created_at', 'activity_date_time', 'status', 'status_fa', 'supervisor_description') // ->get(); if (auth()->user()->can('show-road-item-supervise-cartable')) { // $query = RoadItemsProject::where('is_new', 1) // ->with('files') // // ->where(function ($query) { // // $query->where('status', 0); // // }) // ->selectRaw($selectRaw); $data = RoadItemsProject::where('is_new', 1) // ->where('user_id', auth()->user()->id) ->when($this->id, function($query, $id){ return $query->where('id', $id); }) ->when($this->item, function($query, $item){ return $query->where('item', $item); }) ->when(!is_null($status), function($query) use ($status){ return $query->where('status', $status); }) ->when(($fromDate && $toDate), function($query) use($fromDate, $toDate){ return $query->whereBetween('activity_date_time', [$fromDate, $toDate]); }) ->when($this->province_id, function($query, $province_id){ return $query->where('province_id', $province_id); }) ->when($this->edarat_id, function($query, $edarat_id){ return $query->where('edarat_id', $edarat_id); }) ->select('id', 'item', 'item_fa', 'sub_item', 'sub_item_fa', 'sub_item_data', 'unit_fa', 'start_lat', 'start_lng', 'end_lat', 'end_lng', 'created_at', 'activity_date_time', 'status', 'status_fa', 'supervisor_description', 'province_fa', 'edarat_name') ->orderBy('status') ->orderBy('id', 'desc') ->get(); } elseif (auth()->user()->can('show-road-item-supervise-cartable-province')) { if (is_null(auth()->user()->province_id)) { return response()->json([ 'message' => 'استانی برای شما در سامانه ثبت نشده است!' ], 400); } $data = RoadItemsProject::where('is_new', 1) ->where('province_id', auth()->user()->province_id) ->when($this->id, function($query, $id){ return $query->where('id', $id); }) ->when($this->item, function($query, $item){ return $query->where('item', $item); }) ->when(!is_null($status), function($query) use ($status){ return $query->where('status', $status); }) ->when(($fromDate && $toDate), function($query) use($fromDate, $toDate){ return $query->whereBetween('activity_date_time', [$fromDate, $toDate]); }) ->when($this->edarat_id, function($query, $edarat_id){ return $query->where('edarat_id', $edarat_id); }) ->select('id', 'item', 'item_fa', 'sub_item', 'sub_item_fa', 'sub_item_data', 'unit_fa', 'start_lat', 'start_lng', 'end_lat', 'end_lng', 'created_at', 'activity_date_time', 'status', 'status_fa', 'supervisor_description', 'province_fa', 'edarat_name') ->orderBy('status') ->orderBy('id', 'desc') ->get(); // $query = RoadItemsProject::where('is_new', 1)->with('files')->where('province_id', auth()->user()->province_id) // // ->where(function ($query) { // // $query->where('status', 0) // // ->orWhere('supervisor_id', auth()->user()->id); // // }) // ->selectRaw($selectRaw); } return view('excel.V2.RoadItems.supervisor_cartable', [ 'data' => $data, 'fromDate' => $fromDate, 'toDate' => $toDate ]); } /** * @return array */ public function registerEvents(): array { return [ AfterSheet::class => function(AfterSheet $event) { $event->sheet->getDelegate()->setRightToLeft(true); }, ]; } public function drawings() { $drawing = new Drawing(); $drawing->setName('Logo'); $drawing->setDescription('This is my logo'); $drawing->setPath(public_path('/dist/logo.png')); $drawing->setWidth(50); $drawing->setHeight(50); $drawing->setOffsetX(5); $drawing->setOffsetY(5); $drawing->setCoordinates('A1'); $drawing2 = new Drawing(); $drawing2->setName('Logo'); $drawing2->setDescription('This is my logo'); $drawing2->setPath(public_path('/dist/141icon.png')); $drawing2->setWidth(50); $drawing2->setHeight(50); $drawing2->setOffsetX(5); $drawing2->setOffsetY(5); $drawing2->setCoordinates('B1'); return [$drawing, $drawing2]; } public function styles(Worksheet $sheet) { return [ // Style the first row as bold text. 'A:BA' => [ 'font' => [ 'name' => 'B Nazanin' ] ], ]; } }