Пікірлер
@thimotypascal2342
@thimotypascal2342 3 күн бұрын
hi sir help me i can't to install filament
@pedroesca3
@pedroesca3 3 күн бұрын
Thank you friend... I have finished this project and added more features, if anyone wants to see it, please contact me. Thanks again, my friend.
@lovzansky_5590
@lovzansky_5590 4 күн бұрын
btw why can you generate the tailwind without npm run dev first?
@lovzansky_5590
@lovzansky_5590 4 күн бұрын
Auto subscription from me!
@ScrewThisGlueThat
@ScrewThisGlueThat 4 күн бұрын
Very good work.
@SameerQureshi-rl3co
@SameerQureshi-rl3co 4 күн бұрын
Git repository
4 күн бұрын
Thank you very much.,❤
@meshackstev6709
@meshackstev6709 4 күн бұрын
Thank you for the great job you are doing
@lovzansky_5590
@lovzansky_5590 5 күн бұрын
Thankyou for the tutorial!
@alviolampis
@alviolampis 5 күн бұрын
TY from Italy!
@HaseebMemon-h7b
@HaseebMemon-h7b 9 күн бұрын
How to track the order status
@abd667
@abd667 10 күн бұрын
Moi cette partie pour moi refuse d'effectuer les calculs
@angelofernando2pac
@angelofernando2pac 10 күн бұрын
I spent an entire day trying to figure out why {{ $products->links() }} wasn't working. I searched everywhere because the pagination just wasn't showing up! It turned out that I had only added 2 products, and since the pagination only appears when there are more than 6 products, it wasn't showing. As soon as I added 7 products, the pagination appeared instantly. So, there was nothing wrong with the code at all! Just a rookie mistake. 😅
@JoelDogbo
@JoelDogbo 10 күн бұрын
I have a problem with the relationship manager on filament it is not possible to do it with a relationship of type hasOne to BelongsTo I don't know how you managed it and I use version 3.2
10 күн бұрын
Hello, thanks for your time i learned a lot with yours videos. I have a question: The relationship between Order and Address is One--one. How can hide the "Create Address" when the order has one adress?
10 күн бұрын
An order can only have one address, which is why the hasOne relationship was created. To hide the button to create a new address I have added the following: ->headerActions([ Tables\Actions\CreateAction::make() ->hidden(fn (RelationManager $livewire) => $livewire->getRelationship()->exists()), ]) En la clase: AddressRelationManager Thank yoy very much
@sleepytothehead7861
@sleepytothehead7861 12 күн бұрын
can you share the images file pls
@lesnah27
@lesnah27 13 күн бұрын
Hello, very good course, do you have the repository available?
@masmurginting6308
@masmurginting6308 15 күн бұрын
thanks a lot
@mochamadkhosy5346
@mochamadkhosy5346 17 күн бұрын
Sir, i have a trouble that filed slug doesn't have a default value in product model. I've checked the model slug is in the fillable property, after i checked the error notification the slug value is not passing the data and the code is same with you. what may be the issue ?
@mochamadkhosy5346
@mochamadkhosy5346 17 күн бұрын
its solved, the disabled() change to readOnly()
@gamer10178
@gamer10178 18 күн бұрын
Whose watching this part 5 in 2024😇
@zirnitrax7692
@zirnitrax7692 22 күн бұрын
this guy is saying OK more often than I breathe
@mochamadkhosy5346
@mochamadkhosy5346 23 күн бұрын
thank you for the tutorial, it's useful to me for learning.. Sir, what is your font that you use in your vscode ?
@DCodeMania
@DCodeMania 23 күн бұрын
Operator Mono
@250tours
@250tours 24 күн бұрын
Hi! What about the float numbers on quantity??
@websers-4402
@websers-4402 28 күн бұрын
address relation manager not working select count(*) as aggregate from `addresses` where `addresses`.`orders_id` = 1 and `addresses`.`orders_id` is not null showing this error that means it's not reading i have done as you shown in the video public function up(): void { Schema::create('addresses', function (Blueprint $table) { $table->id(); $table->foreignId('order_id')->constrained('orders')->cascadeOnDelete(); $table->string('first_name')->nullable(); $table->string('last_name')->nullable(); $table->string('phone')->nullable(); $table->text('street_address')->nullable(); $table->string('city')->nullable(); $table->string('state')->nullable(); $table->string('zip_code')->nullable(); $table->timestamps(); }); } public function up(): void { Schema::create('orders', function (Blueprint $table) { $table->id(); $table->foreignId('user_id')->constrained('users')->cascadeOnDelete(); $table->decimal('grand_total', 10, 2)->nullable(); $table->string('payment_method')->nullable(); $table->string('payment_status')->nullable(); $table->enum('status', ['new', 'processing', 'shipped', 'delivered', 'canceled'])->default('new'); $table->string('currency')->nullable(); $table->decimal('shipping_amount', 10, 2)->nullable(); $table->string('shipping_method')->nullable(); $table->text('notes')->nullable(); $table->timestamps(); }); } class Address extends Model { use HasFactory; protected $fillable = [ 'order_id', 'first_name', 'last_name', 'phone', 'street_address', 'city', 'state', 'zip_code', ]; public function order(){ return $this->belongsTo(Orders::class, 'order_id'); } public function getFullNameAttribute(){ return "{$this->first_name} {$this->last_name}"; } } class Orders extends Model { use HasFactory; protected $fillable = [ 'user_id', 'grand_total', 'payment_method', 'payment_status', 'status', 'currency', 'shipping_amount', 'shipping_method', 'notes' ]; public function user(){ return $this->belongsTo(User::class); } public function items(){ return $this->hasMany(Orderitems::class); } public function address(){ return $this->hasOne(Address::class); } }
@DreamganForge
@DreamganForge 29 күн бұрын
i have a problem, Unable to find component: [app.filament.resources.order-resource.relation-managers.address-relation-manager]
@keyloggerkeylogger-bj6hs
@keyloggerkeylogger-bj6hs Ай бұрын
can you please give the source code?
@DCodeMania
@DCodeMania 29 күн бұрын
Contact me on [email protected]
@keyloggerkeylogger-bj6hs
@keyloggerkeylogger-bj6hs Ай бұрын
I liKe your videos sir. Can you please share you source code?
@DreamganForge
@DreamganForge Ай бұрын
Why doesn't the product image appear when clicking the view button, even though the source code is exactly the same?
@keyloggerkeylogger-bj6hs
@keyloggerkeylogger-bj6hs 29 күн бұрын
where did you find the source code?
@DreamganForge
@DreamganForge Ай бұрын
SQLSTATE[HY000]: General error: 1364 Field 'slug' doesn't have a default value (Connection: mysql, SQL: insert into categories (name, image, is_active, updated_at, created_at) values (Nisaul Azizah, categories/01J6BHZGV61QB31TSZ8GAZN25Z.jpg, 1, 2024-08-28 03:55:26, 2024-08-28 03:55:26))
@abra1.
@abra1. Ай бұрын
Very good , ok
@jaydeepchauhan9555
@jaydeepchauhan9555 Ай бұрын
class "numberformatter" not found when watching User Resourse I uncomment this line ;extension=intl ----> extension=intl but not solved still can you pls help?
@travailhamza
@travailhamza Ай бұрын
for laravel 11 : composer require filament/filament="3.2.57" -W
@mwandish
@mwandish Ай бұрын
Big fan here, can i follow the same steps but with a different system, lets say an online management system.
@dion3109
@dion3109 Ай бұрын
Hey, can you maybe make an video about your extensions and vscode setup? You have nice auto completion what doesnt work in my vscode
@BlakeTheJack
@BlakeTheJack Ай бұрын
Awesome.. Could you share the cart management file ?
@abinjacob36
@abinjacob36 Ай бұрын
If there are 20000 in database users it becomes slow , so how to make the website faster in such case ? Plz help
@vugarkhalil
@vugarkhalil Ай бұрын
Respect
@wesammuneer8926
@wesammuneer8926 Ай бұрын
Brother, thank you very much for this beuatiful tutorial, this is my first completed project in my career 🟢✨ Love to see future projects with you again 🤩
@vugarkhalil
@vugarkhalil Ай бұрын
Respect
@cyruss9455
@cyruss9455 Ай бұрын
Thank you for the wonderful tutorial, Sahil. But how about 'My account' page. Where is it?
@DCodeMania
@DCodeMania Ай бұрын
I've left this page for you guyzz, try to develop this page yourself.
@patipanpatisampita8321
@patipanpatisampita8321 Ай бұрын
Please add json web token for authentication. Thank you.
@DCodeMania
@DCodeMania Ай бұрын
This is a stateful authentication using session, you can use JWT in stateless authentication where you need token.
@vugarkhalil
@vugarkhalil Ай бұрын
Respect ❤❤❤❤❤❤❤
@vugarkhalil
@vugarkhalil Ай бұрын
Respect ❤❤❤❤❤
@vugarkhalil
@vugarkhalil Ай бұрын
Respect ❤❤❤
@vugarkhalil
@vugarkhalil Ай бұрын
Respect ❤❤❤
@vugarkhalil
@vugarkhalil Ай бұрын
Respect
@dalelanto895
@dalelanto895 2 ай бұрын
What is the extension you are using that auto imports the filaments in VS Code? always liking the vids and already subbed!
@DCodeMania
@DCodeMania 2 ай бұрын
PHP Intelephense extension
@joselife-on4029
@joselife-on4029 2 ай бұрын
Many thanks for this amazing project
@dalelanto895
@dalelanto895 2 ай бұрын
Subscribed!
@ivo9563
@ivo9563 2 ай бұрын
#[Title('Some title')] is usable only in a simple way, but no localisation translating. e.g #[Title(__('Some title'))) or #[Title(config('app.name').' - '.__('Some title'))).