Laravel excel export example. Create a new class called UsersExport in .

Laravel excel export example. Laravel 10 Import Export CSV & Excel File Example.
Laravel excel export example Dec 23, 2024 · Cara Menggunakan Laravel Excel. if you want to see an example of import export csv file in laravel 10 then you are in the right place. The following example uses two different Excel Export buttons - one for a full export of all data, regardless of any filtering which has been applied, and the other to export only the filtered-in data: Supercharged Excel exports and imports in Laravel. Jun 26, 2018 · Laravel-Excel package is great for exporting data. else you can start from Step 1. For example; public function export {return Excel Jan 29, 2024 · Spatie’s simple Excel library makes it easy for us to make Laravel able to export and import Excel and CSV files. 4 days ago · Tutorial Membuat Import & Export Excel di Laravel #3 : Proses Import - Halo teman-eman semuanya, di artikel sebelumnya kita sudah berhasil membuat database baru dan menjalankan migration. This package supercharge your Laravel collections and export them directly to an Excel or CSV document. Easily export resources to Excel. g. So, let's see Laravel 10 import export CSV and Excel files, how to export CSV files in laravel 10/ Oct 25, 2020 · 首先,我們到 Laravel Excel 建立一個 export,php artisan make:export ArticlesExport — model=Article Laravel 11 Inertia & Vue 3 CRUD Tutorial with Aug 27, 2019 · The screenshot that is attached above is the excel file that I am able to generate for now and the screenshot below is an example of the excel file I want to generate, with tables underneath another table. Exports can be created from a PHP generator (opens new window) class, by using the FromGenerator concern. It is a manageable and elegant wrapper around PhpSpreadsheet to simplify exports and imports. In the tutorial videos, you will learn: How to format exported columns How to add header or additional Supercharged Excel exports and imports in Laravel. Apr 28, 2024 · Pada tutorial laravel ini kita belajar membuat fitur export excel. Laravel Excel Exports are all about export Supercharged Excel exports and imports in Laravel. Instalasi Laravel Excel. Dimulai dengan setup project, menyiapkan sample data, coding fitur export excel dan uji coba download file hasil export ke dalam format excel. Create a new class called UsersExport in Dec 17, 2020 · I want to ask, can I use limit and offset queries on excel level using queries? In this case I tried Laravel Excel multiple sheet by adding some additional options. Exporting has never been so easy. Laravel return the file as a response of an API GET request. This means they will transfer the information you want to export/import to the Excel writer/reader. If you want to register it yourself, add the ServiceProvider in config/app. After pressing the export button, we download the exported data as a CSV file. Sehingga bila membuat report memakai excel, hindari pemikiran css yang dihandle bagus. 0 # Simple Excel Export # Basics. You may do this by using the make:export command. We will use the `maatwebsite/excel` composer package for import and export tasks. Example: Amount of data = 10. if you want to see an example of laravel 10 import file excel then you are in the right place. Nova 1. It is a simple and elegant wrapper for PhpSpreadsheet that simplifies exports and imports. 1" I used download method in my case here is my HelperClass to generate records according to my requirement Jan 24, 2019 · I tried to implement exporting to excel file From View approach using the Laravel Excel. Supercharge your Laravel collections and export them directly to an Excel or CSV document. (excel::export. x. Multiple Sheets. The Maatwebsite\Excel package is a popular package that makes it easy to work with Excel and CSV files in Laravel. In this example post, I will use the Maatwebsite Package to import export large excel and csv file into MySQL database in PHP Feb 2, 2021 · Dalam tutorial ini, kita akan mencoba Export Excel di Laravel dan Contoh Data CSV menggunakan package maatwebsite/excel. 3 Exporting # Creating the export 1. Exporting even larger resources? When importing you have to implement the Maatwebsite\Excel\Concerns\WithCalculatedFormulas concern for Laravel Excel to calculate values from formulas. Laravel 10, Importing and exporting Excel and CSV files in Laravel can provide several benefits for managing and manipulating data within your application. xlsx'); In laravel import file Apr 20, 2024 · Hello Friends, In this short tutorial, we will cover a laravel 10 import export excel. LE 2. 1. in controller. you will learn import export csv file in laravel 9. You provide us the query, we handle the performance. Follow the following steps to import-export CSV and excel file in laravel 9 apps: Jul 26, 2023 · This command will copy the necessary configuration files to the config directory of your Laravel project. In this example, we will create a simple form for input where you can upload a CSV file and create multiple users. hideOnExport - The field can be available on index requests but will not be shown on export requests; onlyOnExport - The field is only available on export requests; showOnExport - The field is available on export requests and maybe create/update requests, depending on the defined logic. 0. A new file can be created using the create method with Supercharged Excel exports and imports in Laravel. In the previous example, we did the query inside the export class. Excel::download(new UsersExport(2019), 'users. Jan 27, 2023 · So, let's see the laravel 9 export excel file, laravel excel export example, export in laravel 9, export excel in laravel 8/9, and maatwebsite/excel laravel 9. Supercharge your Nova resources and export them directly to an Excel or CSV document. Mar 25, 2019 · Your Controllers namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Input; use Maatwebsite\Excel\Facades\Excel; use App\Http\Controllers\ImportController; class ExportController extends Controller { /** * Display a listing of the resource. Is there a way to do this within a single Excel Export class? Aug 4, 2018 · In 2022 with latest version 3. By using the FromQuery concern, we can prepare a query for an export. Jun 19, 2019 · I want to export data from the database to . Easily export collections to Excel. Supercharged exports. ada banyak yang bisa kita lakukan dengan package laravel excel ini. generate_heading_by_indices) or pass false as 5th May 11, 2023 · Step 5: Install the Excel package maatwebsite/excel; Step 6: Create Routes; Step 7: Create an export class; Step 8: Create a Controller; Step 9: Create a View; Step 10: Run Laravel Application; Note: If you have already set up your laravel projects you can skip Step 1, Step 2, Step 3, and Step 4. For example, we have to pass data year like 2019 we will pass like below. Create a new class called InvoicesExport in app/Exports: Nov 11, 2021 · You can delegate a DataTables export button to another external (non-DataTables) element. Queue your exports for even more super powers! Nov 5, 2023 · Laravel maatwebsite/excel introduce new version 3 with new feature and code structure. php : 'providers' => [ /* * Package Service Providers As a quick demonstration, we'll create an export for the User model. Example:A1 = Agency Name, B1 = Division Name, A3:E3 = Account Title (merge), A5 - E5 = Table header, A6 - E6 = result of foreach data. nl/3. 2. Laravel 9 Import Export Excel & CSV File using maatwebsite/excel. It's pretty easy to export to Excel and import from Excel, with great Laravel Excel package. You are able to hook into the parent package by using events. Nov 12, 2023 · And because this package uses the laravel-excel package under the hood, the file type in the withWriterType method is provided using the laravel-excel package. You can also mark an export implicitly as a queued export. Supercharged resource exports. 1. Jun 13, 2023 · sobatcoding. PHP Jul 22, 2019 · Pass an id variable to a 'where' request to fetch database entries that match id and export these entries to an excel sheet using Laravel Excel. you will learn laravel 8 import export csv. public function downloadExcel(){ return Excel::download(new SomeExport(), 'project. Default Laravel Export Let's create a dummy project with Users table and default Laravel Auth. Create a new class called InvoicesExport in app/Exports : Mar 7, 2024 · One such library is PHPExcel, which allows developers to generate Excel files programmatically. pada saat tutorial ini dibuat, package laravel excel sudah sampai versi laravel excel 3. To handle the import and export processes, we'll create separate classes using the make:export and make:import Artisan commands. Use the below command to create a new laravel project. Jan 21, 2024 · This tutorial gives a simple example of how to implement export and import functionality in a Laravel application, but the package can be used for more complex use cases as well. You signed out in another tab or window. So when I encountered this in a client's project, I decided to write this article with a few tips on this topic. Laravel Excel offers several ways of exporting the spreadsheet. you will learn laravel 8 import file excel. Sep 4, 2024 · In this example, I will show you how to import and export excel and csv files in the laravel 11 application. Reload to refresh your session. php The export process has a few events you can leverage to interact with the underlying classes to add custom behaviour to the export. You switched accounts on another tab or window. # Exporting collections. Jun 7, 2016 · I am trying to export some data from my model to excel scheet with "Laravel excel", I have done it, but my result is far away from what I really need That is what I`ve got in downloaded file: And that is what i really want to accomplish: My controller part: //casting export Easily export collections to Excel. No need to use convenience methods like "query" or "view", if you need full control over the export. composer create-project laravel/laravel excel. namespace App \ Exports ; use App \ Invoice ; use Illuminate \ Contracts \ Queue \ ShouldQueue ; use Maatwebsite \ Excel \ Concerns \ Exportable ; use Maatwebsite \ Excel \ Concerns \ FromQuery ; class InvoicesExport implements Supercharged Excel exports and imports in Laravel. Supercharged Excel exports and imports in Laravel. Here is an example of how to create a route for In all of theses cases, the entire logic of how the export/import needs to happen is kept within this object. For example; users. # Instantiating a chart You first have to instantiate a new PhpOffice\PhpSpreadsheet\Worksheet\Chart, passing the name, title, legend and plot in the constructor. Controller Method public Jul 28, 2018 · For passing data from controller to laravel excel function we can pass and use data like below. Sep 19, 2017 · Here I used maatwebsite/excel library to generate excel file with FromQuery approach but due to library update Excel::create has been replaced by Excel::download in "maatwebsite/excel": "^3. 1 atau yang terbaru. Read more about the exportable trait in the exportables docs. com - Export dan Import Excel Ke Dalam Database Menggunakan Laravel 8. Langkah pertama untuk menggunakan Laravel Excel adalah menginstalnya melalui Composer seperti: “`bash composer require maatwebsite/excel “` Laravel Excel akan secara otomatis mendaftarkan service providernya. For Exporting excel file i am using Laravel Excel. Jun 30, 2019 · I am Doting Excel export using Laravel with Vuejs, somehow the Code is returning true value but can not Download Excel file, if I do normal request it will download the file, but in axios request, it will not export the file. but if you want add headings row with export excel file then you can do it using WithHeadings Class. If you don't feel like reading, Laracasts can help. Oct 30, 2018 · I'm using Laravel Excel 3. Jul 19, 2015 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand For the laravel 10/11 import CSV and Excel file, we will use the import class, for laravel 10 export CSV and Excel files will use the export class. I want to pass three parameters to query the data and download into excel file. Exporting even larger datasets? 6 days ago · Langkah 1 - Membuat File Export; Langkah 2 - Menambah Fungsi Export di Controller; Langkah 3 - Menambahkan Route; KESIMPULAN; Tutorial Membuat Import & Export Excel di Laravel #4 : Proses Export - Halo teman-teman semuanya, di artikel sebelumnya kita sudah membahas bagaimana cara membuat import data excel dan memasukkannya ke database di Laravel 6. # Laravel Excel Features. . This is my blade file. Jika teman-teman ingin membaca dokumentasi lengkap tentang package laravel excel ini, teman-teman bisa membacanya di sini. Exportables. Vue + Laravel: How to properly Export/Download file Example How to download generated csv file. It provides a simple API that you can use to import and export data with just a few lines of code. you will do the following things for laravel 8 import export csv from database. While this is a good solution for small exports, for bigger exports this will come at a hefty performance price. Xử lí import theo từng batch. 1 from https://laravel-excel. I am using php artisan make:export to export file . In the previous examples, we did the query inside the export class. It will convert an HTML table into an Excel spreadsheet. Export queries with automatic chunking for better performance. 💻 The repository for this example can be found at fajarwz/blog-laravel-excel. you can understand a concept of import export csv file in laravel 8. We can develop existing functions, such as combining file uploads when importing or adding some data validation. We'll use an invoices export as example. However, if one sheet creates a calculation by referencing another sheet, e. Jul 13, 2022 · Throughout this tutorial, you will learn how to easily import and export Excel and CSV files in the Laravel 9 application while communicating with the PHP MySQL database using The easiest way to start an export is to create a custom export class. 💪 Create an export class in app/Exports. Pada kesempatan kali ini kita semua akan belajar bagaimana cara membuat proses import dari file excel ke database di Laravel 6. For this example, let's assume we're working with a User model. My problem is, I want to assign the result in every cell. Jan 25, 2022 · Laravel Excel is designed at being a Laravel-flavoured PhpSpreadsheet. We'll follow 3 steps: 1 Creating the export. Apr 4, 2021 · ① Laravel Excelをインストール ② DBの設定とmigration ③ エクスポートとインポートクラスを定義 ④ Excelファイルをインポート ⑤ MySQLからデータをExport(Excelで出力) #① Laravel Excelをインストール はじめにlaravelに「Laravel Excel」をインストールする必要があり 🔥 PhpSpreadsheet (opens new window) is a library written in pure PHP and providing a set of classes that allow you to read from and to write to different spreadsheet file formats, like Excel and LibreOffice Calc. But not a lot of info there about formatting Excel cells - widths, word wraps, fonts etc. To allow the export to have multiple sheets, the WithMultipleSheets concern should be used. In my controller, I have code that generates a db query and puts it into a view. xlsx using Laravel-Excel. =Sheet1!A1 , then you also have to implement the concern Maatwebsite\Excel\Concerns\HasReferencesToOtherSheets . You can do this by using Laravel's ShouldQueue contract. For example, the first sheet will take 5 data and the second sheet will take the Feb 15, 2022 · Export Data to Excel Files in Laravel 8 Today I am Going To Explain you about how you can Export Excel Files in Laravel 8. Configure Database details and make a model: In the second step, set up database configuration in the . Here is the link of the documentation https://laravel-excel. blade. By using the following steps, You can import and export CSV, Excel files from the database with laravel 10 apps: Step 1 – Create New Laravel 10 Project Feb 8, 2023 · In this tutorial, we’ll look at how to import and export Excel and CSV files in Laravel 9 using the Maatwebsite\Excel package. maatwebsite/excel provides an easy way to import and export CSV files in laravel 10 and laravel 11. nl/ and I am trying to figure out if there is a simple way to simply render a collection as an excel file. Nov 2, 2022 · Laravel 9 import export excel, csv file example; In this tutorial, we would love to show you how to import and export excel & csv files to the database in laravel 9 using maatwebsite/excel package. This guide expects that a Laravel is already installed, and the project has a seeded users table and User Eloquent model. LE 3. I have did some research and May 6, 2021 · I am trying to export records to a CSV which queries a relation but my file keeps returning nothing but the headings. Aug 8, 2024 · 1. I am making use of the laravel-excel package to do this. From Generator. Artikel kali ini kita akan mencoba membuat fitur export dan import excel menggunakan Laravel 8 dan library maatwebsite/excel. Simple Excel Export; Exporting; NewExcelFile injections; Store on server; Sheets; Creating a sheet from an array; Row manipulation; Cell manipulation; Sheet styling; Freeze rows; Auto filter; Cell size; Auto size; Column merging; Column formatting; Calling PHPExcel's native methods; Blade to Excel @Blade to Excel; Passing variables to the view そこで今回はLaravel Excelを使用した場合にできる処理最適化の方法について調べてみたのでまとめています。 また、Laravel Excelの内部のコードを読んでその軽量化の仕組みを理解していきます! 結論:処理最適化にはqueryメソッドを使おう Supercharged Excel exports and imports in Laravel. step by step explain laravel 9 import export csv. For title/header row with column titles, you can use the official method Aug 9, 2022 · I am going to show you an example of laravel 9 import export excel. A generator allows you to write code that uses foreach to iterate over a set of data without needing to build an array in memory. Nov 2, 2017 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Apr 4, 2023 · Step 4: Exporting Data to Excel or CSV. Presentation. use Maatwebsite\Excel\Excel; Also ExportDistributorJob::handle method is returning a HTTP response and terminates the script You can also mark an export implicitly as a queued export. You signed in with another tab or window. Apr 20, 2024 · Step for Laravel 10 Import Export CSV File Example. php: Jan 17, 2019 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand. If you see on quick example of maatwebsite then it will very easy to export excel or csv. Jun 7, 2023 · So, In this tutorial, you will learn how to export and import CSV & excel files to MySQL database using maatwebsite/excel package in Laravel 10. Dalam proyek Laravel kali ini, kita selalu perlu mengimpor atau mengekspor baris dari database. env file in laravel 8. In App/Export/studentexport. The third major part of exports is the presentational side of things: transforming the data, sizing the columns, styling the cells, Supercharged Excel exports and imports in Laravel. My Controller: Mar 18, 2024 · composer create-project laravel/laravel excel-import-export Step 2: Install maatwebsite/excel Package To initiate, we’ll install the maatwebsite/excel package using Composer, the package manager. maatwebsite. Export resources with automatic chunking for better performance. In the previous example, we used the Excel::download facade to start an export. Và đây là một số ưu điểm mà Laravel Excel đưa ra: Dễ dàng export/import collections ra file Excel. Laravel has the most extensive and thorough documentation and video tutorial library of all modern web application frameworks, making it a breeze to get started with the framework. In this article, we will explore how to use PHPExcel in Laravel to export data to Excel files. Laravel Excel also provides a Maatwebsite\Excel\Concerns\Exportable trait, to make export classes exportable. I am going to use Tech-Admin Panel for this. I'd like to give the user the ability to download the data in that view as an excel document. In the first examples we'll use the facade technique, in later parts of this chapter other techniques will also be explained. Jun 4, 2024 · In this step-by-step guide of Laravel 8 export data as excel file, learn how to implement Excel export functionality in Laravel. To export data to an Excel or CSV file, we will need to create a route to handle the export process. By using the WithCharts concern, you can add one or multiple charts to your worksheet. Đọc file Excel theo từng nhóm/khối (chunks). $( Jul 29, 2019 · dalam memakai laravel excel, berikirlah kemampuan dari php-excel ini mengalami keterbatasan. PhpSpreadsheet is a php based Oct 15, 2018 · The Excel class is imported incorrectly from the package namespace. Nov 5, 2023 · This article will provide example of laravel 8 import export excel. Prepare rows. Supercharge your Laravel collections or Blade views and export them directly to an Excel or CSV document. Step 3: Generate Excel Import and Export Classes. # Handling the Export object # Writer type detection After using one of the above methods to pass on the Export object to the Excel manager, it will try to figure out what export it needs to be generated to. Step 1: Install Laravel 10; Step 2: Install maatwebsite/excel Package; Step 3: Create Dummy Records; Step 4: Create Import Class; Step 5: Create Export Class; Step 6: Create Controller; Step 7: Create Routes; Step 8: Create Blade File; Run Laravel App; Step 1: Install Laravel 10 Apr 12, 2019 · Oke selesai sudah Tutorial Laravel #38 : Export Excel Laravel. 2 Customizing the export. The sheets() method expects an array of sheet export objects to be returned. Laravel Excel export, import tutorial with example laravel laravel-package excel-import excel-export laravel-excel phpspreadsheet Updated May 28, 2021 The Maatwebsite\Excel\ExcelServiceProvider is auto-discovered and registered by default. Version. namespace App \ Exports ; use Maatwebsite \ Excel \ Concerns \ Exportable ; use Maatwebsite \ Excel \ Concerns \ FromQuery ; use Illuminate \ Contracts \ Queue \ ShouldQueue ; class InvoicesExport implements FromQuery Supercharged Excel exports and imports in Laravel. Queries can be automatically chunked for better performance. Tự động chunking (chia nhỏ) collections để tổi ưu performance. step by step explain laravel 9 import file excel. Feb 11, 2021 · I'm working on Laravel Excel using Ajax method. PhpSpreadsheet is a php-based… Supercharge your Laravel collections or Blade views and export them directly to an Excel or CSV document. I would like to share with you laravel 10 import export csv. If you need to prepare rows before appending these rows to sheet, you can add method prepareRows to your export class. # Data transfer object. The import/export objects are in essence simple data transfer objects (DTO). Below is my controller. Aug 21, 2019 · I'm currently generating an excel file (xlsx) by using Excel::download() method but the problem is that some of the column's width is not wide enough to fit its content. Laravel Excel is intended at being Laravel-flavoured PhpSpreadsheet: a simple, but an elegant wrapper around PhpSpreadsheet with the goal of simplifying exports and imports. Here's an example on exporting your data from a bulk action using Laravel Excel: 1 use App \ Exports \ UsersExport ; 2 use Maatwebsite \ Excel \ Facades \ Excel ; I have problem on exporting to excel using laravel maatwebsite excel, i can do export but it will export all in series. 1, this can be done in a very transparent and straight forward way. Install new laravel project: In step first, create a new laravel project named laravel-excel. The export process has a few events you can leverage to interact with the underlying classes to add custom behaviour to the export. I can't seem to find a way to pass the variable. Here's an example in which these are useful. Mar 7, 2020 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Supercharged Excel exports and imports in Laravel. Importing and exporting files allows you to transfer data between your Laravel application and external systems or platforms. Berikirlah bahwa Nov 5, 2023 · Hi, This article will provide example of laravel 9 import export excel. Commercial Support Blog (opens new window) GitHub (opens new window) 4 days ago · Langka 1 - Install Composer; Langkah 2 - Install Laravel Dengan Composer; KESIMPULAN; Tutorial Membuat Import & Export Excel di Laravel #1 : Installasi & Persiapan - Halo teman-teman semuanya, pada kesempatan kali ini kita semua akan belajar bagaimana cara membuat import dan export di Framework Laravel 6. I already search and read a few examples but still failed to make the excel file to download. Laravel 10 Import Export CSV & Excel File Example. xlsx'); } And this is ajax call. Adapun langkah-langkah cara menggunakan package laravel excel adalah: 1. Make sure to import the class use Maatwebsite\Excel\Facades\Excel at the top of your file. Aug 18, 2022 · Laravel Excel is intended to be a PHPSpreadsheet with a Laravel flavour. I want to export all 10 data by dividing them into several sheets. Queue your exports for even more super powers! Supercharged Excel exports and imports in Laravel. wyrkmn zcwi orryjua iyh vlepg gwksu bqemx esqlqdts uvvu mnwrgr
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}