diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index fe75946..0000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.gitignore b/.gitignore index 0ab6d9a..9487dda 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,5 @@ node_modules public/hot vendor .phpunit.result.cache -public/laravel-views.js.LICENSE.txt \ No newline at end of file +public/laravel-views.js.LICENSE.txt +**/.DS_Store diff --git a/README.md b/README.md index 269af3c..de9926c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Laravel views -[See live example](http://laravel-views.herokuapp.com) +[See live example](https://laravelviews.com) Laravel package to create beautiful common views like tables using only PHP code, inspired by [Laravel Nova](https://nova.laravel.com/), these views are built with [Laravel Livewire](https://laravel-livewire.com/) and styled using [Tailwind CSS](https://tailwindcss.com/) diff --git a/doc/.DS_Store b/doc/.DS_Store deleted file mode 100644 index 5008ddf..0000000 Binary files a/doc/.DS_Store and /dev/null differ diff --git a/doc/detail-view.md b/doc/detail-view.md index 685a214..5ab7a37 100644 --- a/doc/detail-view.md +++ b/doc/detail-view.md @@ -1,6 +1,6 @@ # Detail view -[See live example](http://laravel-views.herokuapp.com/detail-view) +[See live example](https://laravelviews.com/detail-view) This view creates a dynamic detail view to render a model attributes list with all the data you need, you can also customize the default component to create complex detail views and execute actions over the model is being used. diff --git a/doc/grid-view.md b/doc/grid-view.md index 27dafa5..5404304 100644 --- a/doc/grid-view.md +++ b/doc/grid-view.md @@ -1,6 +1,6 @@ # Grid view -[See live example](http://laravel-views.herokuapp.com/grid-view) +[See live example](https://laravelviews.com/grid-view) This view creates a dynamic grid view using card data, same as a TableView this view has features like filters, pagination and a search input, you can also customize the card data as you need diff --git a/doc/laravel-views.md b/doc/laravel-views.md index 5b4806c..074a19f 100644 --- a/doc/laravel-views.md +++ b/doc/laravel-views.md @@ -1,6 +1,6 @@ # Laravel views -[See live example](http://laravel-views.herokuapp.com) +[See live example](https://laravelviews.com) - [Home](../README.md) - [Installation and basic usage](#installation-and-basic-usage) diff --git a/doc/list-view.md b/doc/list-view.md index 108e62b..9df8844 100644 --- a/doc/list-view.md +++ b/doc/list-view.md @@ -1,6 +1,6 @@ # List view -[See live example](http://laravel-views.herokuapp.com/list-view) +[See live example](https://laravelviews.com/list-view) This view creates a dynamic list view with filters, pagination, search input, and actions by each item, it is useful for small screens, you can also customize the item compoment for each row as you need. diff --git a/doc/table-view.md b/doc/table-view.md index aff86da..c685538 100644 --- a/doc/table-view.md +++ b/doc/table-view.md @@ -1,6 +1,6 @@ # Table view -[See live example](http://laravel-views.herokuapp.com/table-view) +[See live example](https://laravelviews.com/table-view) This view creates a dynamic data table with some features like filters, pagination and search input, you can customize the headers, the data to be displayed for each row.