Skip to content

Instantly share code, notes, and snippets.

View humayunjavaid's full-sized avatar
🎯
Focusing

Humayun Javed humayunjavaid

🎯
Focusing
View GitHub Profile
@humayunjavaid
humayunjavaid / form.blade.php
Created September 29, 2022 12:10
Trix Integration with Livewire And Alpine js
/* Component Render */
<x-rich-text wire:model.lazy="description"></x-rich-text>
@humayunjavaid
humayunjavaid / date-picker.blade.php
Created September 29, 2022 12:18
Pickaday Integration with Laravel Livewire And Alpine js
<div
x-data="{ value : @entangle($attributes->wire('model')) }"
x-on:change="value = $event.target.value"
x-init="
new Pikaday({ field: $refs.input, 'format': 'MM/DD/YYYY' });"
>
<div class="relative mt-2">
<input
{{ $attributes->whereDoesntStartWith('wire:model') }}
x-ref="input"