laravel show方法没有样式

时间:2017-09-20 15:33:57

标签: php jquery html css laravel

我是laravel的新手,我正在尝试在数据库上创建类别表和设备表之间的多对多关系 在分类视图中我拥有所有类别,我希望当我克隆到一个类别转到另一个视图并显示此类别的所有设备 它适用于我在类别和show方法中使用rsource控制器:CatgoryController.php

 public function show($id)
{
    $categories = Category::find($id);
    $all_devices = $categories->devices;

    return view('devices',compact('categories',$categories,'all_devices',$all_devices));
}

在设备视图中我做: devices.blade.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

这是我展示所有类别的方式,当点击其中一个时,它会转到anthor视图以显示此类别的设备

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');

我的问题是真的有用,但是拥有一个类别设备的页面不具备网站的风格

1 个答案:

答案 0 :(得分:0)

将你的stylesto公共文件夹移动到任何子文件夹中。我使用设备作为子文件夹,devices.css是我的文件.. 在你的主要blade.with你的文件夹和文件名

中放置这样的链接
<link rel="stylesheet" href="{{URL::to('/')}}/devices/devices.css">