@extends('layouts.wrap')
@section('title', 'Kategoriler')
@include('page::sidebar')
@section('_content')
Sayfa Kategorileri
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if($category->count() > 0)
| Başlık |
Açıklama |
@foreach($category as $p)
| {{ $p->title }} |
{{ $p->description }} |
@endforeach
{{ $category->links() }}
@else
@endif
@stop