PATH:
home
/
lab2454c
/
costbloc.com
/
Modules
/
Coupon
/
Exports
<?php /** * @package Coupon Redeem Export * @author TechVillage <support@techvill.org> * @contributor Al Mamun <[almamun.techvill@gmail.com]> * @created 28-11-2021 */ namespace Modules\Coupon\Exports; use Modules\Coupon\Http\Models\CouponRedeem; use Maatwebsite\Excel\Concerns\{ FromCollection, WithHeadings, WithMapping }; class CouponRedeemListExport implements FromCollection,WithHeadings, WithMapping { /** * [Here we need to fetch data from data source] * @return [Database Object] [Here we are fetching data from Coupon Redeem table] */ public function collection() { return CouponRedeem::getAll(); } /** * [Here we are putting Headings of The CSV] * @return [array] [Excel Headings] */ public function headings(): array { return[ 'Coupon', 'User', 'Order', 'Discount Amount', 'Created' ]; } /** * [By adding WithMapping you map the data that needs to be added as row. This way you have control over the actual source for each column. In case of using the Eloquent query builder] * @param [object] $couponRedeemList [It has coupon_redeems table info] * @return [array] [comma separated value will be produced] */ public function map($couponRedeemList): array { return[ $couponRedeemList->coupon->name, $couponRedeemList->user->name, $couponRedeemList->order_code, $couponRedeemList->discount_amount, $couponRedeemList->created_at, ]; } }
[-] CouponRedeemListExport.php
[edit]
[+]
..
[-] VendorCouponListExport.php
[edit]
[-] CouponListExport.php
[edit]