@extends('layouts.wrap')
@section('title', 'Banka Hesapları')
@include('order::sidebar')
@section('_content')
Banka Hesapları
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
@if($bank->count() > 0)
| Başlık |
Bilgi |
@foreach($bank as $p)
| {{ $p->title }} |
{{ $p->value }} |
@endforeach
{{ $bank->links() }}
@else
@endif
@stop