@extends('layouts.master-vnext') @section('page-title') Manage suppliers @endsection @section('content')
{{ Form::text("q", $searchQuery, ['class' => 'form-control pull-right']) }}
@foreach($accounts->sortBy('name') as $account) @endforeach
Name Contact City Phone Mobile Comments
$account->id]) }}"> {{ $account->name }} {{ $account->contact_name }} {{ $account->city }} {{ $account->phone_number }} {{ $account->mobile_number }} {{ $account->comments }} edit
{!! csrf_field() !!} {!! method_field('DELETE') !!}
@endsection