%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/sljcon/resources/views/admin/category/
Upload File :
Create Path :
Current File : /var/www/html/sljcon/resources/views/admin/category/all.blade.php

@extends('layouts.app')

@section('content')
    <div class="container">
        <div class="row">
            <div class="col-md-12 m_top_30">
                <a href="{{route('admin.category.newOrEdit','new')}}" class="btn btn-success pull-right">
                    <i class="fa fa-plus"></i> New Category
                </a>
            </div>
        </div>
        <div class="row">
            <div class="col-md-12">
                <div class="table-responsive">
                    <table class="table table-striped">
                        <thead>
                        <tr>
                            <th scope="col">#</th>
                            <th scope="col">Category Name</th>
                            <th scope="col">Action</th>
                        </tr>
                        </thead>
                        <tbody>
                        @foreach($categories as $category)
                            <tr>
                                <td scope="row">{{$category->id}}</td>
                                <td>{{$category->name}}</td>
                                <td>
                                    <div class="btn-group" role="group" aria-label="Basic example">
                                        <a type="button" class="btn btn-warning"
                                           href="{{route('admin.category.newOrEdit',$category->id)}}"><i
                                                    class="fa fa-edit"></i></a>
                                        <a type="button" class="btn btn-success"><i class="fa fa-search"></i></a>
                                    </div>
                                </td>
                            </tr>
                            @endforeach
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
    </div>
@endsection

Zerion Mini Shell 1.0