04 Laravel Splade Table Component | Laravel Splade Tutorial
Вставка
- Опубліковано 10 лют 2025
- In this video let's display the posts and categories in Splade table component.
Let's learn Laravel Splade together.
01 Install Splade with Blade.
02 Laravel Splade Basics.
03 Create Category and Post Model and Migration.
Laravel Splade tutorial.
Laravel Splade.
Support me:
Get the Udemy Course: bit.ly/3SMaeCY
/ laraveller
Cloudways: www.cloudways....
DigitalOqean $200 free: m.do.co/c/35b7...
Follow me:
Twitter: / laravellercom
Facebook Page: / 1laravellercom
Instagram: / laravellercom
GitHub: github.com/lar...
Website:
Setup VS CODE for Laravel: • How to setup VS Code f...
Setup Mac for development: • How To Setup New Mac F...
Laravel API Vue 3 CRUD: • Vue JS CRUD with Larav...
Laravel REST API: • Laravel Rest API CRUD ...
Playlists:
Laravel Filament Permission: bit.ly/3Gojd8Z
Vue Authentication: bit.ly/3g7YZHd
Laravel Inertia Portfolio - bit.ly/3DlxTp5
Laravel Reddit clone - bit.ly/3UOYS2O
React tutorial for beginners - bit.ly/3arkqjX
Laravel Filament Blog - bit.ly/3nWYv74
Laravel 9 Full Tutorial - bit.ly/3nTiyTR
Laravel 9 Media Library - bit.ly/3LpJmVr
Laravel Essentials Full Tutorial - bit.ly/3vplyuC
Laravel Mail Tutorial - bit.ly/37mJUNh
Laravel Restaurant Reservation - bit.ly/3Jc5IcG
Spatie Laravel Permission - bit.ly/3pOsOhN
Laravel Testing For Beginners - bit.ly/3t1gNq4
Laravel Roles and Permissions - bit.ly/3gOhM7d
LARAVEL INERTIA MOVIE APP - bit.ly/3FVMp4Q
Laravel Livewire Movie App - bit.ly/3s8D6v1
Laravel Classified Website - bit.ly/3nsFRnb
Livewire Employees - bit.ly/2ZtIpZY
Laravel Employees Management - bit.ly/3Gglt14
Laravel admin panel - bit.ly/3CcX75M
Laravel Splade Table Component | Laravel Splade Tutorial
Amazing!!!
thank you for this toutrials
i,m allready begin use splade but when try to disblay post with image is not working
i tried many ways
so if you have way please publish it and thank you again..
Can you please tell me, which vs-code extension you are using to auto import class and for auto-suggestion?
How do you get a numeric (decimal) column formatted e.g. to have comma separators, 2 decimal places and still sum up?
how to display and search with relationship tables like post with category? thank you good content
please explain how to exports works?
how to make global search with autocomplete that tell us posts and categories that related with keyword before we select it to search. it is like algoria.
Using Meilisearch
@@tonyxhepaofficial Thank you for Meilisearch AlpineJS Instant Search Serie
how to implement admin lte for splade
how to show category in post table?
how to display api response in spladetable ?
Hey man, thanks for the video.
I am getting "get_class: Argument #1 ($object) must be of type object, null given" error while adding the export method to the table component. could you please add the export option to check if it is a package bug or if I miss something?
/**
* @return \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory
*/
public function __invoke(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory
{
$users = QueryBuilder::for(User::class)
->defaultSort('name')
->allowedSorts(['name', 'email'])
->allowedFilters(['name', 'email'])
->paginate()
->withQueryString();
return view('pages.users.list', [
'users' => SpladeTable::for(User::class)
->defaultSort('name')
->column('name', sortable: true, searchable: true)
->column('email', sortable: true, searchable: true)
->column('action')
->export()
]);
}