338 comments found.
Before I purchase I am assuming that there are two versions of this template, HTML only and HTML + Laravel 9. I am an experienced developer, however it’s M$ stack as opposed to PHP/Laravel.
HI! There are “HTML + Vanilla js (without any framework)”, “Laravel + HTML + Alpine.js”, “HTML + Alpine.js” versions in the bundle.
please how to return a view in livewire component with your routing system?
HI!
This is Laravel routing system. You can easily use livewire components in views.
If you want to render the Full-Page Component you shoud do the following steps:
1. Add the ”@livewireStyles” and ”@livewireScripts” Blade directives in the head tag, and before the end body tag in layout file (“app-layout.blade.php” or “base-layout.blade.php”).
2. Create your livewire Component (example: “php artisan make:livewire CreateProduct”)
3. Add Route:
Route::middleware('auth')->group(function () {
Route::get('/products/create',CreateProduct::class )->name('products/create');
});
4. Add layout to render method:
public function render()
{
return view('livewire.create-product')->layout('components/app-layout', ['title' => 'Create Product']);
}
5. And view (“resources/livewire/create-product.blade.php”):
<main class="main-content w-full px-[var(--margin-x)] py-8">
<h1>Your staff</h1>
</main>
I use jetstream + livewire and it works perfectly. many thanks and great work. how many stars do you want for the rating?
Great! Happy coding 
I would like to display a notification after submitting my form. the data is well recorded in the database but no notification appears
in livewire componant class:
public $newRegion = [];
// add function public function add() { $validated = $this->validate([ ‘newRegion.code_region’ => [ ‘required’, Rule::unique(‘Regions’, ‘code_region’), ], ‘newRegion.libelle’ => [ ‘required’, Rule::unique(‘Regions’, ‘libelle’), ], ]);
Region::create($this->newRegion);
$this->dispatchBrowserEvent('showSuccessMessage', ["message" => "success message!"]);
$this->newRegion = [];
$this->resetErrorBag();
}
in liwewire view component
<main class=”main-content w-full px-[var(—margin-x)] pb-8”> ............ </main>
my form data
wire:model='newRegion.code_region'
wire:model='newRegion.libelle'
<script> window.addEventListener(“showSuccessMessage”, () => $notification({ text:’success message’ // or text: event.detail.message }) ); </script>
where is the probleme please. sory for my bad english
Hi, try this:
Livewire/CreateProduct.php:
class CreateProduct extends Component
{
public $name = "";
public function saveData(){
// Your Staff
$this->dispatchBrowserEvent('product-created', ['message' => 'Product '.$this->name.' created']);
}
public function render()
{
return view('livewire.create-product')->layout('components/app-layout', ['title' => 'Create Product']);
}
}
and view:
<main>
<h1>Your staff</h1>
<input type="text" wire:model="name">
<button wire:click="saveData">
Save
</button>
<div hidden="" x-on:product-created.window="event => $notification({text:event.detail.message})" />
</main>
Regards
good it works. thank you very much
Hi super Man. Modals work perfectly in my project. but when it comes to submitting a form through the modal nothing happens. the modal I chose in the template is the one
http://127.0.0.1:8000/components/modal (top origin)NB: the form data is processed by a livewire component.
Hi! Unfortunately, I don’t have your code and I can’t help you. If you can send us email (piniahelp@gmail.com) with your code.
i have error Target class [App\Http\Middleware\PreventRequestsDuringMaintenance] does not exist.
Hello!
Are you sure that you installed the theme from the documentation? I just downloaded and installed theme and no problem happened to me.
Do you have any option for a horizontal menu in the lineone template? I would like to buy this template. It will be great if this template has a top menu option.
Hi.
New navigations will probably be added in the update at the end of the month.
Regards.
Is there a plan to update the Lineone template later to laravel 9 + vite?
Hi. The bundle consists of 1. HTML version 2. Laravel 9 version 3. Vanilla js version. Already, the Laravel version is Laravel 9 and vite 3. Regards.
after NPM INSTALL
quill <=1.3.7 Severity: moderate Cross-site Scripting in quill – https://github.com/advisories/GHSA-4943-9vgg-gr5r No fix available node_modules/quill
HI.
Do you mean “npm autit”?
Quill.js is a modern and powerful WYSIWYG Editor and trusted by Linkedin, Salesforce, Slack and ect. If you don’t want to use Quill.js, you can remove it from the dependency and “app.js” file
Hello Support,
Do you have an option to create an empty Laravel project with Lineone, or do you have help tips on how to remove everything to create an empty Laravel project ready for Lineone, or do you have the option to add it to an existing Laravel project (without any Theme)?
Thank you in advance for the information…
Hello.
1. You should match your “package.json” project with template. 2. Also you shoud match “tailwind.config.js” and “postcss.config.js” files. 3. You should copy “resources/css” folders from template to your laravel project. (for css components) 4. You should copy “resources/js” folders from template to your laravel project. (for js components like accordion, popper, drawer, collapse)
You can also send us an email (piniahelp@gmail.com) so that we can send you a blank laravel template.
Regards.
Hello I would like to make a progress bar with 100% width I have this :
but when I put w-12/12 it don’t work and disappear
Hello!
You should try “w-full”
Regards!
Hello , would you like to make single sidebar (classic) layout and header with navigation layout (without sidebar) version ? or , its available at next update ?
Thanks
Hi.
New navigations will probably be added in the update at the end of the month.
Regards.
Sir. can you make 2 sidebar models
could you please share , how to call $notification({text:’This is a simple notification’}) on javascript eventlistener
Hello! You can use $notification like a normal function:
Element eventListener:
const notifyBtn = document.querySelector("#notifybtn");
notifyBtn.addEventListener("click", () =>
$notification({ text: "This is a simple notification" })
);
Window events:
window.addEventListener("load", () =>
$notification({ text: "Hello Welcome User" })
);
Custom events:
window.addEventListener("app:mounted", () =>
$notification({ text: "Hello From custom event" })
);
Regards.
Beautiful theme! Can you please make sure that when you release the ReactJS version it uses Vite and not Webpack! Thank you…terrible load times right now!
Hi, I realize that I purchased this assuming it was easy plug and play, I am not a web developer. This is a user error but may you walk me through what to download so I can access this? I am just trying to edit the dashboards to customize it for my personal website. Thank you!
Hello!
If you have no coding experience, you can hire a developer. But if you have coding experience and want to use only the template dashboards, you can send a message to the email (piniahelp@gmail.com). We will help you as much as we can.
Regards.
hello , good job i check ur theme lineone that is pretty dope im definily gonna buy this have one question before that when will u update teamplante ? and can i get early log acces please ?
Hello… What do you mean by “teamplante”?
Hi, I have purchased the theme kit, but I am struggling to add the styling to laravel, as you don’t document users who already have an existing project and how they would implement it. I already have one project and wanted to implement this styling project. I have already installed tailwind. please can you assist me?
Hello, I would like to first thank you the purchase. Which version of laravel are you using? Are you using Laravel mix or vite? Also vanilla js or alpine.js.
Please send us these answers to our email (piniahelp@gmail.com), we will help you.
Regards.
Can explain quill in detail and how to use or upload pictures in livewire? Thank you!
Hello!
You should use forwarding wire model. https://laravel-livewire.com/docs/2.x/alpine-js#forwarding-wire-model-input-events If you what an example of it’s use, you can send email us (piniahelp@gmail.com).Regards!
I have received it. Thank you very much. It would be great if you could provide an example of image upload to database example, and support @ tailwindcss/typography.
Hello does this include design assets like figma files and icons?
Hello. The figma file will be added tho the bundle soon. We are used “Heroicons”, “Fontawesome” icons. You can also use the following icon set: https://www.figma.com/community/file/886554014393250663 https://www.figma.com/community/file/995152741314467050 https://www.figma.com/file/XysENgWpZMPumLsQv74fSG/Free-Icon-Pack1200-icons-Community https://www.figma.com/community/file/944228750903853832 https://www.figma.com/community/file/1014530944191182499
What specific icon sets did you use for the side menu in the demo?
Hello. Congrats on the theme. I will probable buy but I miss from the demos a feature that is used on other themes that I need and that is a calendar app. Are you intending to add to the theme something similar like this?: https://demo.pixelcave.com/oneui/be_comp_calendar.html Thank you
Hello! I will try to add the calendar app in the next verisons.
Regards.
can we have a top menu page instead of a sidebar?
Hello. Different navigation variants will be added in the next versions.
Regards!
When you plan to include Figma files in your bundle? It will help us a lot at prototyping stage
Hi, sure. We will try to complete the figma file by the end of the year and add it to the bundle.
Regards