Skip to content

Commit

Permalink
fix bugs comments and setting seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
A1Gard committed Feb 7, 2024
1 parent dfb6479 commit eb7752c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
run: composer update -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Generate key
run: php artisan key:generate
- name: Directory Permissions
Expand Down
2 changes: 1 addition & 1 deletion database/seeders/SettingSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public function run()
(NULL, '1menu', 'text', 'Email', 1, 'email', '{"$lang":"info@local"}', '2023-02-22 20:51:53', '2024-02-06 03:14:33'),
(NULL, 'seo', 'text', 'Website name', 1, 'site_name', '{"$lang":"Xshop"}', '2022-09-14 05:16:58', '2024-02-06 03:14:33'),
(NULL, 'seo', 'text', 'Brief website description (SEO)', 1, 'site_description', '{"$lang":"Description of your store"}', '2022-09-14 05:18:23', '2024-02-06 03:14:33'),
(NULL, 'seo', 'text', 'Website keywords (SEO - use "," to break)', 1, 'site_keywords', '{"$lang":"shop, xshop, website"}'),
(NULL, 'seo', 'text', 'Website keywords (SEO - use "," to break)', 1, 'site_keywords', '{"$lang":"shop, xshop, website"}', '2022-09-14 05:18:23', '2024-02-06 03:14:33'),
(NULL, 'seo', 'text', 'Google Webmaster code', 1, 'site_webmaster_google', '{"$lang":null}', '2022-09-14 05:29:17', '2024-02-06 03:14:33'),
(NULL, 'seo', 'image', 'Site image(SEO)', 1, 'site_image', NULL, '2022-09-14 05:30:51', '2022-09-14 05:30:51');
SQL);
Expand Down
6 changes: 3 additions & 3 deletions resources/views/vendor/starter-kit/admin/comments.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class="btn-danger delete-confirm btn-sm">
{{$comments->links()}}
</div>
</div>
<a class="btn-add" href="{{route('admin.post.create')}}">
<i class="ri-add-line"></i>
</a>
{{-- <a class="btn-add" href="{{route('admin.post.create')}}">--}}
{{-- <i class="ri-add-line"></i>--}}
{{-- </a>--}}
@endsection

0 comments on commit eb7752c

Please sign in to comment.