我是laravel的新手,我正在尝试在category视图中建立数据库中category表和devices表之间的许多关系我拥有所有类别,我希望当我点击到一个类别时,转到另一个视图并显示该类别的所有设备,这与我使用rsource controller进行类别和显示方法有关:CatgoryController。php
public function show($id)
{
$categories = Category::find($id);
$all_devices = $categories->devices;
return view('devices',compact('categories',$categories,'all_devices',$all_devices));
}
在设备视图中,我会:设备。刀身php
@extends('master')
@section('content')
<div class="container">
<div class="row">
<div class="col-lg-12 text-center animateup">
<div class="inline-icons-text section-heading">
<div class="inline-icon">
<hr/><hr/><hr/><hr/><hr/>
</div>
<span class="inline-icon heading-width">
<span class="heading-text"><h1> {{$categories->category_name}} </h1> </span>
</span>
<div class="inline-icon">
<hr/><hr/><hr/><hr/><hr/>
</div>
</div>
</div>
</div>
<br/>
<div class="row text-center">
@foreach ($all_devices as $device)
<div class="col-md-3 col-sm-6 animateleft">
<h5>
<a href="#">{{$device->device_name}}</a>
<span class="glyphicon glyphicon-chevron-right"></span>
</h5>
</div>
@endforeach
</div>
</div>
@stop
这是我如何显示所有的类别,当点击一个它会进入安索视图来显示这个类别的设备
categories.blade.php
<div class="row text-center">
@foreach ($categories as $categories)
<div class="col-md-3 col-sm-6 animateleft">
<h5>
<a href="categories/{{$categories->id}}">{{$categories->category_name}}</a>
<span class="glyphicon glyphicon-chevron-right"></span>
</h5>
</div>
@endforeach
</div>
最后这是我的溃败Rout.php
Route::resource('categories','CategoryController');
Route::resource('/devices','DevicesController');
我的问题是,所有的东西都可以工作,但是有一个类别的设备的页面没有网站的风格
将您的样式移动到公用文件夹中的任何子文件夹中。。这里我使用设备作为子文件夹和设备。css是我的文件。。将这样的链接放置在您的主刀片中。使用您的文件夹和文件名
<link rel="stylesheet" href="{{URL::to('/')}}/devices/devices.css">
问题内容: 我正在尝试为詹金斯创建我的第一个Groovy脚本: 在这里查看https://jenkins.io/doc/book/pipeline/之后,我创建了这个: 但是,我得到: 我想念什么? 另外,如何在不以纯文本形式编写密码的情况下将我的凭据传递到Git存储库? 问题答案: 你感到困惑和混合使用,完全的差异在这里看到。但简短的故事: 声明性管道 是管道DSL的新扩展(基本上是只有一步的管
本文向大家介绍数组有没有length()这个方法? String有没有length()这个方法?相关面试题,主要包含被问及数组有没有length()这个方法? String有没有length()这个方法?时的应答技巧和注意事项,需要的朋友参考一下 答:数组没有length()这个方法,有length的属性。String有有length()这个方法。
我又在和生命搏斗了。或者事实上,我赢得了这场战斗,但我不确定结果是否是预期的处理方式。 假设我有一个有两个生存期的结构:
因为这个方法是在运行时执行的,所以需要对它进行测试吗
我想尝试将以下两种方法合二为一: 第一个方法构造一个映射,其中键是<code>String</code>,值是<code<ArrayList</code>。 我想尝试添加第二条信息,即简单的错误消息(方法2)。HashMap不够复杂,无法保存这些信息,但我喜欢它只接受唯一值的方式,而且很容易迭代和传递。 任何建议非常感谢:)
问题内容: 我在Jenkins管道中使用JSON函数并获取。我正在使用Jenkins 2.85。 任何想法如何解决这个问题? 问题答案: 使用管道实用程序步骤插件可以使用该功能。 没有此插件,您将无法使用此功能。 有关更多信息,请检查:步骤