-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
39 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ yarn dev | |
> اطلاعات ورود اولیه : `[email protected]` (به عنوان توسعه دهنده) یا `[email protected]` (به عنوان مدیر) و | ||
> گذرواژه : `password` | ||
## افزودن تصاویر نممونه | ||
## افزودن تصاویر نمونه | ||
|
||
- دانلود و آمادهسازی تصاویر | ||
|
||
|
@@ -62,8 +62,9 @@ php artisan seeding:prepare | |
``` | ||
</div> | ||
|
||
- nor copy your image folder to `database/seeders/images/` | ||
- then: Seeding image for models: [Group, Category, Post, Product, Slider] | ||
|
||
- ویا تصاویر خود را با پوشه مورد نظر در این مسیر کپی کنید: `database/seeders/images/` | ||
- سپس یکی از مدل ها دلخواه را seed image کنید: [Group, Category, Post, Product, Slider] | ||
|
||
<div dir="ltr"> | ||
|
||
|
@@ -114,6 +115,27 @@ composer install --optimize-autoloader --no-dev | |
``` | ||
</div> | ||
|
||
## اضافه کردن cron job | ||
|
||
جهت اجرا کامل برنامه ها زماندار فروشگاه باید یک دستور زیر رو بزنید: | ||
|
||
<div dir="ltr"> | ||
|
||
```bash | ||
crontab -e | ||
``` | ||
</div> | ||
|
||
و این خط رو اضافه کنید: | ||
|
||
<div dir="ltr"> | ||
|
||
```bash | ||
* * * * * cd /home/[yourusername]/[your-public-html-project-root] && php artisan schedule:run >> /dev/null 2>&1 | ||
``` | ||
</div> | ||
|
||
|
||
## ساختن xController | ||
|
||
درواقع xController یک کنترولر بسیار پیشرفته با همراه لاگ و CRUD برای توسعه آسان است با فرض زیر: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters