%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/digiprint/resources/views/dashboard/
Upload File :
Create Path :
Current File : /var/www/html/digiprint/resources/views/dashboard/categories.blade.php

@extends('dashboard.layouts.app')

@section('content')
    <div class="container">
        <div class="row">
            <div class="col-md-12">
                <div class="panel panel-default">
                    <div class="panel-heading">
                        <h1>
                            <span>Categories</span>
                            <a class="btn btn-success pull-right"
                               href="{{route('dashboard.categories.details', 'new')}}">
                                Create
                            </a>
                        </h1>
                    </div>

                    <table class="table table-responsive">
                        <thead>
                        <th>Name</th>
                        <th>Slug</th>
                        <th>Short Description</th>
                        <th class="text-right">Actions</th>
                        </thead>
                        <tbody>
                        @foreach($categories as $category)
                            <tr>
                                <td>{{$category->name}}</td>
                                <td>{{$category->slug}}</td>
                                <td>{{$category->short_description}}</td>
                                <td class="text-right">
                                    <a class="btn btn-warning"
                                       href="{{route('dashboard.categories.details', $category->id)}}">Edit</a>
                                </td>
                            </tr>
                        @endforeach
                        </tbody>
                    </table>

                </div>
            </div>
        </div>
    </div>
@endsection

Zerion Mini Shell 1.0