问题标签 [voyager]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
laravel - Laravel Voyager BREAD 图像编辑和删除问题
我在使用 voyager BREAD System 上传图片时遇到了问题。如果我使用 BREAD 删除或更新图像,则旧图像不会被替换或删除。它仍然在存储目录中。我正在使用最新版本的 voyager 和 laravel 5.5。这个问题有什么解决办法吗?提前谢谢您。</p>
laravel-5 - 如何在 Voyager 中编辑 TinyMCE.init()?
我刚刚开始使用 Voyager,我想知道是否有一种方法可以覆盖 Voyager 的 app.js 文件中包含的 tinymce.init() 方法中包含的基本设置,而无需经历丑化和编辑该文件(在我看来,这总体上是一个糟糕的主意)。tinymce.init() 可以以某种方式被覆盖吗?
php - Laravel:航海者中特定路线的覆盖路线
我正在尝试覆盖创建行的路线。(发帖,不看)
http://lsapp.dev/admin/cpu-speed/create
在 web.php 中
我修改了
我还创建了控制器
但它会引发以下错误:
ErrorException (E_ERROR) 路由 [voyager.cpu-speed.store] 未定义。(查看:/var/www/html/lsapp/vendor/tcg/voyager/resources/views/bread/edit-add.blade.php)
php - 如何使用 Blade 在 Laravel 中创建动态布局?
所以我正在构建我的第一个博客,我想动态地显示在我的登录页面上的帖子。我希望布局变成这样(可能有点奇怪):
这就是我现在要在博客文章中展示的内容:
web.php(路由):
现在我想动态地制作布局。我想我可以通过检查ID
偶数还是奇数来做到这一点。但是,即使我已经搜索了 50% 的网络,我也不知道如何做到这一点:)。
如果有更好的方法可以让我知道!非常感谢你们!
php - 我在 Laravel 5.4 中为 Voyager 管理面板包创建管理员用户时遇到问题
使用此命令安装 voyage 包后:
我需要使用以下命令创建管理员用户:
然后输入名称和密码
问题是输入用户名和密码后返回此错误
一般错误:1364 字段 'employee_name' 没有默认值(SQL:插入
employee
(
我已经有一个数据库,但有不同的命名约定,例如:我称之为员工的用户表和名为员工姓名的名称字段
我的问题是,有什么方法可以将 voyager 中的预期字段与我数据库中的实际字段进行映射,因为我无法更改它们?
提前致谢 。
laravel - 安装 Voyager 后 Laravel UserTableSeeder 报错--seed
嗨,我是 laravel 的新手,我设置了我的安装并添加了 voyager 包。现在当我尝试刷新我的数据库 CLI 时:php artisan migrate:refresh --seed
我收到此错误消息。
我在哪里可以找到详细的错误描述以及种子有什么问题?
格拉西亚斯
php - Laravel5.5 合并分支后报错:打开所需文件失败
合并分支后,我面临这个错误。
lluminate\Support\ServiceProvider::mergeConfigFrom(): 打开失败需要'D:\project_folder_path\vendor\larapack\voyager-hooks/publishable/config/voyager-hooks.php' (include_path='.;C:\php\pear ')
所有作曲家更新/安装都失败,并出现以下相同的错误。
生成优化的自动加载文件 Illuminate\Foundation\ComposerScripts::postAutoloadDump @php artisan package:discover
在 ServiceProvider.php 第 59 行:
lluminate\Support\ServiceProvider::mergeConfigFrom(): 打开失败需要'D:\project_folder_path\vendor\larapack\voyager-hooks/publishable/config/voyager-hooks.php' (include_path='.;C:\php\pear ')
ServiceProvider.php 中的第 59 行
php - Laravel 航海者验证
我尝试在 Laravel Voyager 中使用验证。当我为图像设置验证规则时
虽然我选择了一张图片,但它总是显示错误The default img field is required.
但是如果我required
从验证规则中删除部分,比如
然后它没有显示任何错误,尽管我选择了一个低于尺寸的图像。
有什么错误吗?
php - Voyager doesn't show images because of exists() function
I have a blog project created using Laravel, It works fine on my localhost, I uploaded the project and converted it to work on a shared host, and this is not my first time doing this, after uploading the project and the database, Everything works fine, I mean when opening the blog I can see my posts (WITH PICTURES) and categories and everything, BUT in the Voyager CPanel I can't see images, so I picked the admin logo as an example, In the database it contains this name (settings/January2018/PnrVRpff94865gfxeZ0gt.png
) and the Voyager sideBar Blade code for this image is this :
and the result on chrome is this :
#xA;So I went to the Voyager::image()
function :
And I did my tests and here is the results in this logo case :
empty($file)
Return False (Good)
Storage::disk(config('voyager.storage.disk'))->exists($file)
Return False (Bad)
Storage::disk(config('voyager.storage.disk'))->url($file)
Return the Correct URL (Good)
Knowing that config('voyager.storage.disk')
Return "public" and the filesystems disks config is untouched.
As you see the problem in the Voyager::image()
Function, So please help me solve this problem in the right way.
Update :
I tried changing the Voyager::image() function in the /vendor/tcg/voyager/src folder To :
#xA;and it worked so well, but as you see it's a bad solution, And I need a right one, So please help.