An open API service indexing awesome lists of open source software.

https://github.com/laracasts-jverd/pixel-positions

30 days to learn Laravel - a polished version of the project
https://github.com/laracasts-jverd/pixel-positions

blade laravel tailwind

Last synced: 3 months ago
JSON representation

30 days to learn Laravel - a polished version of the project

Awesome Lists containing this project

README

        

# Pixel Positions

Vite
```sh
npm install
npm run dev
```

Tailwind
```sh
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
```

```sh
php artisan make:migration create_employers_table
```

Create models with controller, factory, etc
```sh
php artisan make:model Employer -cfs --policy
php artisan make:model Job --all
```

Generate a new test file
```sh
php artisan make:test
```

Execute tests
```sh
php artisan test
```

Link storage to public folder
```sh
php artisan storage:link
```